You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2017/06/09 17:09:27 UTC

[3/3] lucene-solr:branch_6_6: Ref Guide: escape pipes in the table

Ref Guide: escape pipes in the table


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/c5805748
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/c5805748
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/c5805748

Branch: refs/heads/branch_6_6
Commit: c58057483bff72c50428f3412a32fda4f16a556a
Parents: ac221f5
Author: Cassandra Targett <ct...@apache.org>
Authored: Fri Jun 9 11:44:55 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Fri Jun 9 12:09:16 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/the-standard-query-parser.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c5805748/solr/solr-ref-guide/src/the-standard-query-parser.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/the-standard-query-parser.adoc b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
index f4455d2..94baedf 100644
--- a/solr/solr-ref-guide/src/the-standard-query-parser.adoc
+++ b/solr/solr-ref-guide/src/the-standard-query-parser.adoc
@@ -246,7 +246,7 @@ Boolean operators allow you to apply Boolean logic to queries, requiring the pre
 |Boolean Operator |Alternative Symbol |Description
 |AND |`&&` |Requires both terms on either side of the Boolean operator to be present for a match.
 |NOT |`!` |Requires that the following term not be present.
-|OR |`||` |Requires that either term (or both terms) be present for a match.
+|OR |`\|\|` |Requires that either term (or both terms) be present for a match.
 | |`+` |Requires that the following term be present.
 | |`-` |Prohibits the following term (that is, matches on fields or documents that do not include that term). The `-` operator is functionally similar to the Boolean operator `!`. Because it's used by popular search engines such as Google, it may be more familiar to some user communities.
 |===