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 19:13:24 UTC

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

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

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


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

commit c2897444b4b6481e82fb0648e63db643f5a62fad
Author: Andrey Bozhko <an...@gmail.com>
AuthorDate: Wed Sep 20 14:13:19 2023 -0500

    fix protected term filter example (#1894)
    
    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>
 ----