You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2018/09/13 20:28:41 UTC

lucene-solr:branch_7x: Fix Ma[n]datory typo in stream-decorator-reference.adoc file.

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x be78e1b6d -> 9c8b4353a


Fix Ma[n]datory typo in stream-decorator-reference.adoc file.


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

Branch: refs/heads/branch_7x
Commit: 9c8b4353a23598b40b9ac30a735b61f7172d6ba4
Parents: be78e1b
Author: Christine Poerschke <cp...@apache.org>
Authored: Thu Sep 13 21:26:19 2018 +0100
Committer: Christine Poerschke <cp...@apache.org>
Committed: Thu Sep 13 21:28:17 2018 +0100

----------------------------------------------------------------------
 solr/solr-ref-guide/src/stream-decorator-reference.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9c8b4353/solr/solr-ref-guide/src/stream-decorator-reference.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-decorator-reference.adoc b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
index 08f1e7a..c2d6160 100644
--- a/solr/solr-ref-guide/src/stream-decorator-reference.adoc
+++ b/solr/solr-ref-guide/src/stream-decorator-reference.adoc
@@ -675,7 +675,7 @@ The `having` expression wraps a stream and applies a boolean operation to each t
 === having Parameters
 
 * `StreamExpression`: (Mandatory) The stream source for the having function.
-* `booleanEvaluator`: (Madatory) The following boolean operations are supported: `eq` (equals), `gt` (greater than), `lt` (less than), `gteq` (greater than or equal to), `lteq` (less than or equal to), `and`, `or`, `eor` (exclusive or), and `not`. Boolean evaluators can be nested with other evaluators to form complex boolean logic.
+* `booleanEvaluator`: (Mandatory) The following boolean operations are supported: `eq` (equals), `gt` (greater than), `lt` (less than), `gteq` (greater than or equal to), `lteq` (less than or equal to), `and`, `or`, `eor` (exclusive or), and `not`. Boolean evaluators can be nested with other evaluators to form complex boolean logic.
 
 The comparison evaluators compare the value in a specific field with a value, whether a string, number, or boolean. For example: `eq(field1, 10)`, returns `true` if `field1` is equal to 10.