[DOCS] EQL: Fix operator docs (#64286) (#64290)

This commit is contained in:
James Rodewig 2020-10-28 10:44:22 -04:00 committed by GitHub
parent 5d42c2b06e
commit 22e931ed72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -242,13 +242,13 @@ matching is case-sensitive.
`+` (add)::
Adds the values to the left and right of the operator.
`-` (Subtract)::
`-` (subtract)::
Subtracts the value to the right of the operator from the value to the left.
`*` (Subtract)::
`*` (multiply)::
Multiplies the values to the left and right of the operator.
`/` (Divide)::
`/` (divide)::
Divides the value to the left of the operator by the value to the right.
+
[[eql-divide-operator-float-rounding]]