Skip to content

Commit eb850c1

Browse files
authored
[DOCS] EQL: Remove duplicate case-sensitivity info (#68860) (#68863)
1 parent c5caca1 commit eb850c1

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

docs/reference/eql/syntax.asciidoc

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,13 @@ the value to the right. Otherwise returns `false`.
125125

126126
`==` (equal, case-sensitive)::
127127
Returns `true` if the values to the left and right of the operator are equal.
128-
Otherwise returns `false`. For strings, matching is case-sensitive. Wildcards
129-
are not supported.
128+
Otherwise returns `false`. Wildcards are not supported.
130129

131130
`:` (equal, case-insensitive)::
132131
Returns `true` if strings to the left and right of the operator are equal.
133-
Otherwise returns `false`. Matching is case-insensitive and can only be used to
134-
compare strings. Supports <<eql-syntax-wildcards,wildcards>> and
135-
<<eql-syntax-lookup-operators,list lookups>>.
132+
Otherwise returns `false`. Can only be used to compare strings. Supports
133+
<<eql-syntax-wildcards,wildcards>> and <<eql-syntax-lookup-operators,list
134+
lookups>>.
136135

137136
[IMPORTANT]
138137
====
@@ -149,8 +148,7 @@ DSL filter>> that contains a <<query-dsl-match-query,`match`>> query.
149148

150149
`!=` (not equal, case-sensitive)::
151150
Returns `true` if the values to the left and right of the operator are not
152-
equal. Otherwise returns `false`. For strings, matching is case-sensitive.
153-
Wildcards are not supported.
151+
equal. Otherwise returns `false`. Wildcards are not supported.
154152

155153
`>=` (greater than or equal) ::
156154
Returns `true` if the value to the left of the operator is greater than or equal
@@ -225,15 +223,13 @@ user.name : ("administrator", "system", "network service")
225223
----
226224

227225
`in` (case-sensitive)::
228-
Returns `true` if the value is contained in the provided list. For strings,
229-
matching is case-sensitive.
226+
Returns `true` if the value is contained in the provided list.
230227

231228
`not in` (case-sensitive)::
232-
Returns `true` if the value is not contained in the provided list. For strings,
233-
matching is case-sensitive.
229+
Returns `true` if the value is not contained in the provided list.
234230

235231
`:` (case-insensitive)::
236-
Returns `true` if the value is contained in the provided list. Can only be used
232+
Returns `true` if the string is contained in the provided list. Can only be used
237233
to compare strings.
238234

239235
[discrete]

0 commit comments

Comments
 (0)