From d6641ffb1d5fd5c9d3743561e2c5158951317713 Mon Sep 17 00:00:00 2001 From: Christine Poerschke Date: Thu, 13 Sep 2018 21:26:19 +0100 Subject: [PATCH] Fix Ma[n]datory typo in stream-decorator-reference.adoc file. --- solr/solr-ref-guide/src/stream-decorator-reference.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/solr-ref-guide/src/stream-decorator-reference.adoc b/solr/solr-ref-guide/src/stream-decorator-reference.adoc index 08f1e7ae1e2..c2d61608154 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.