From 22e931ed72b9df8ad2b25ba752308f6bf4b6ac14 Mon Sep 17 00:00:00 2001 From: James Rodewig <40268737+jrodewig@users.noreply.github.com> Date: Wed, 28 Oct 2020 10:44:22 -0400 Subject: [PATCH] [DOCS] EQL: Fix operator docs (#64286) (#64290) --- docs/reference/eql/syntax.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/eql/syntax.asciidoc b/docs/reference/eql/syntax.asciidoc index 39d2f151efe..a28382e1f04 100644 --- a/docs/reference/eql/syntax.asciidoc +++ b/docs/reference/eql/syntax.asciidoc @@ -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]]