Fix typo in docstrings

"be default" should be "by default"

This closes #224
This commit is contained in:
Adam Frey 2017-08-01 12:29:53 -04:00 committed by Tomas Fernandez Lobbe
parent 4fcd8a806f
commit 0320f20e16
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ public class EmbeddedSolrServer extends SolrClient {
* Create an EmbeddedSolrServer using a NodeConfig
*
* @param nodeConfig the configuration
* @param defaultCoreName the core to route requests to be default
* @param defaultCoreName the core to route requests to by default
*/
public EmbeddedSolrServer(NodeConfig nodeConfig, String defaultCoreName) {
this(load(new CoreContainer(nodeConfig)), defaultCoreName);
@ -99,7 +99,7 @@ public class EmbeddedSolrServer extends SolrClient {
* {@link #close()} is called.
*
* @param coreContainer the core container
* @param coreName the core to route requests to be default
* @param coreName the core to route requests to by default
*/
public EmbeddedSolrServer(CoreContainer coreContainer, String coreName) {
if (coreContainer == null) {