From e92b237dd58ce7fdab9e18e31b41037213e3e82f Mon Sep 17 00:00:00 2001 From: James Rodewig <40268737+jrodewig@users.noreply.github.com> Date: Wed, 16 Sep 2020 11:05:00 -0400 Subject: [PATCH] [DOCS] EQL: Clarify wildcard operator --- docs/reference/eql/syntax.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/eql/syntax.asciidoc b/docs/reference/eql/syntax.asciidoc index 2ab923d2f98..4ecd705d31e 100644 --- a/docs/reference/eql/syntax.asciidoc +++ b/docs/reference/eql/syntax.asciidoc @@ -262,8 +262,8 @@ Strings are enclosed with double quotes (`"`) or single quotes (`'`). [[eql-syntax-wildcards]] ===== Wildcards -When making string comparisons using the `==` or `!=` operators, you can use the -`*` operator to match specific patterns: +When comparing strings using the `==` or `!=` operators, you can use the `*` +operator within the string to match specific patterns: [source,eql] ----