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:07:55 UTC

[3/3] lucene-solr:master: 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/a3bb5172
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a3bb5172
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a3bb5172

Branch: refs/heads/master
Commit: a3bb51720c613a1ab2e51ef45541bec8566e4a96
Parents: 70ecf9e
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:07:45 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/a3bb5172/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.
 |===