Skip to content

Commit 4026602

Browse files
authored
Update in-operator-comparison.md
Normalized `in` descriptions
1 parent 693c01c commit 4026602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-explorer/kusto/includes/in-operator-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The following table provides a comparison of the `in` operators:
77

88
|Operator |Description |Case-Sensitive |Example (yields `true`) |
99
|-----------|--------------|----------------|-------------------------|
10-
|[`in`](../query/in-cs-operator.md) |Equals to one of the elements |Yes |`"abc" in ("123", "345", "abc")`|
10+
|[`in`](../query/in-cs-operator.md) |Equals to any of the elements |Yes |`"abc" in ("123", "345", "abc")`|
1111
|[`!in`](../query/not-in-cs-operator.md) |Not equals to any of the elements |Yes | `"bca" !in ("123", "345", "abc")` |
1212
|[`in~`](../query/in-operator.md) |Equals to any of the elements |No | `"Abc" in~ ("123", "345", "abc")` |
1313
|[`!in~`](../query/not-in-operator.md) |Not equals to any of the elements |No | `"bCa" !in~ ("123", "345", "ABC")` |

0 commit comments

Comments
 (0)