mirror of https://github.com/apache/lucene.git
Fix typo in docstrings
"be default" should be "by default" This closes #224
This commit is contained in:
parent
4fcd8a806f
commit
0320f20e16
|
@ -74,7 +74,7 @@ public class EmbeddedSolrServer extends SolrClient {
|
||||||
* Create an EmbeddedSolrServer using a NodeConfig
|
* Create an EmbeddedSolrServer using a NodeConfig
|
||||||
*
|
*
|
||||||
* @param nodeConfig the configuration
|
* @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) {
|
public EmbeddedSolrServer(NodeConfig nodeConfig, String defaultCoreName) {
|
||||||
this(load(new CoreContainer(nodeConfig)), defaultCoreName);
|
this(load(new CoreContainer(nodeConfig)), defaultCoreName);
|
||||||
|
@ -99,7 +99,7 @@ public class EmbeddedSolrServer extends SolrClient {
|
||||||
* {@link #close()} is called.
|
* {@link #close()} is called.
|
||||||
*
|
*
|
||||||
* @param coreContainer the core container
|
* @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) {
|
public EmbeddedSolrServer(CoreContainer coreContainer, String coreName) {
|
||||||
if (coreContainer == null) {
|
if (coreContainer == null) {
|
||||||
|
|
Loading…
Reference in New Issue