You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2017/06/21 07:10:30 UTC

[04/50] [abbrv] lucene-solr:feature/autoscaling: Ref Guide: Format ceil evaluator docs

Ref Guide: Format ceil evaluator docs


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

Branch: refs/heads/feature/autoscaling
Commit: c24e401d7c391b0da47a94012a131b07e2584566
Parents: 1a00950
Author: Joel Bernstein <jb...@apache.org>
Authored: Fri Jun 16 14:32:18 2017 -0400
Committer: Joel Bernstein <jb...@apache.org>
Committed: Fri Jun 16 14:32:18 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c24e401d/solr/solr-ref-guide/src/stream-evaluators.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/stream-evaluators.adoc b/solr/solr-ref-guide/src/stream-evaluators.adoc
index 7f46312..f10bca3 100644
--- a/solr/solr-ref-guide/src/stream-evaluators.adoc
+++ b/solr/solr-ref-guide/src/stream-evaluators.adoc
@@ -231,7 +231,7 @@ mod(fieldA,1.4) // returns the remainder of fieldA divided by 1.4.
 if(gt(fieldA,fieldB),mod(fieldA,fieldB),mod(fieldB,fieldA)) // if fieldA > fieldB then return the remainder of fieldA/fieldB, else return the remainder of fieldB/fieldA.
 ----
 
-=== ceil
+== ceil
 The `ceil` function rounds a decimal value to the next highest whole number.
 
 === ceil Parameters