Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Spies <[email protected]>
  • Loading branch information
abdonpijpelink and alex-spies authored Jan 25, 2024
1 parent bad46f7 commit 60587af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/reference/esql/functions/greatest.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The rest of the columns to evaluate.
*Description*

Returns the maximum value from multiple columns. This is similar to <<esql-mv_max>>
except it's intended to run on multiple columns at once.
except it is intended to run on multiple columns at once.

NOTE: When run on `keyword` or `text` fields, this returns the last string
in alphabetical order. When run on `boolean` columns this will return
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/esql/functions/least.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The rest of the columns to evaluate.
*Description*

Returns the minimum value from multiple columns. This is similar to
<<esql-mv_min>> except it's intended to run on multiple columns at once.
<<esql-mv_min>> except it is intended to run on multiple columns at once.

NOTE: When run on `keyword` or `text` fields, this returns the first string
in alphabetical order. When run on `boolean` columns this will return
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/esql/functions/log10.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Numeric expression. If `null`, the function returns `null`.

*Description*

Returns the log base 10. The input can be any numeric value, the return value
Returns the logarithm to base 10. The input can be any numeric value, the return value
is always a double.

Logs of negative numbers are NaN. Logs of infinites are infinite, as is the log
Expand Down

0 comments on commit 60587af

Please sign in to comment.