You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2019/08/20 08:37:33 UTC

[lucene-solr] branch branch_8x updated: SOLR-13650: ref guide typo

This is an automated email from the ASF dual-hosted git repository.

noble pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new c181466  SOLR-13650: ref guide typo
c181466 is described below

commit c18146602ba17c44de18956be02e7be9aa044257
Author: Noble Paul <no...@users.noreply.github.com>
AuthorDate: Tue Aug 20 18:37:28 2019 +1000

    SOLR-13650: ref guide typo
---
 solr/solr-ref-guide/src/adding-custom-plugins-in-solrcloud-mode.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/src/adding-custom-plugins-in-solrcloud-mode.adoc b/solr/solr-ref-guide/src/adding-custom-plugins-in-solrcloud-mode.adoc
index 13537fe..88ec077 100644
--- a/solr/solr-ref-guide/src/adding-custom-plugins-in-solrcloud-mode.adoc
+++ b/solr/solr-ref-guide/src/adding-custom-plugins-in-solrcloud-mode.adoc
@@ -166,7 +166,7 @@ Step  6 : Create a new request handler '/test' for the collection 'gettingstarte
 ----
 curl http://localhost:8983/solr/gettingstarted/config -H 'Content-type:application/json' -d '{
     "create-requesthandler": { "name" : "/test",
-    "class": "org.apache.solr.core.RuntimeLibReqHandler", "pakacage" : "my-pkg" }
+    "class": "org.apache.solr.core.RuntimeLibReqHandler", "package" : "my-pkg" }
     }'
 ----