You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by an...@apache.org on 2023/09/20 22:08:43 UTC

[solr] branch branch_9x updated: fix protected term filter example (#1894) (#1944)

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

anshum pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 1fc69db0219 fix protected term filter example (#1894) (#1944)
1fc69db0219 is described below

commit 1fc69db021931b9b6cf9fc49ae45f6ff5fd90685
Author: Anshum Gupta <an...@apache.org>
AuthorDate: Wed Sep 20 15:08:38 2023 -0700

    fix protected term filter example (#1894) (#1944)
    
    Co-authored-by: Andrey Bozhko <an...@gmail.com>
    Co-authored-by: Andrey Bozhko <ab...@apple.com>
---
 solr/solr-ref-guide/modules/indexing-guide/pages/filters.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/modules/indexing-guide/pages/filters.adoc b/solr/solr-ref-guide/modules/indexing-guide/pages/filters.adoc
index 0a6214a97e3..b9089f0c8d1 100644
--- a/solr/solr-ref-guide/modules/indexing-guide/pages/filters.adoc
+++ b/solr/solr-ref-guide/modules/indexing-guide/pages/filters.adoc
@@ -2450,7 +2450,7 @@ For all terms except those in `protectedTerms.txt`, synonyms are added, terms ar
           ignoreCase="true" protected="protectedTerms.txt"
           wrappedFilters="SynonymGraph-fwd,ReverseString,SynonymGraph-rev"
           synonymgraph-FWD.synonyms="fwd-syns.txt"
-          synonymgraph-FWD.synonyms="rev-syns.txt"/>
+          synonymgraph-REV.synonyms="rev-syns.txt"/>
 </analyzer>
 ----