From fcb5364b3504a5ecbecc96efa2632f57c3eff73f Mon Sep 17 00:00:00 2001 From: Kim Gustyr Date: Fri, 29 Dec 2023 16:36:17 +0000 Subject: [PATCH] chore(docs): fix segment rule operators table (#3224) --- docs/docs/basic-features/managing-segments.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/basic-features/managing-segments.md b/docs/docs/basic-features/managing-segments.md index b55f038d02e9..2ca0e465e88d 100644 --- a/docs/docs/basic-features/managing-segments.md +++ b/docs/docs/basic-features/managing-segments.md @@ -85,7 +85,7 @@ Some of the operators in local evaluation mode are only supported in later SDK v The full set of Flagsmith rule operators are as follows: | Name | Condition | -| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | --- | +| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | | `Exactly Matches (==)` | Trait value is equal to segment value. | | `Does Not Match (!=)` | Trait value is not equal to segment value. | | `% Split` | Identity is in the percentage bucket. See [Percentage Split Operator](#percentage-split-operator). | @@ -93,7 +93,7 @@ The full set of Flagsmith rule operators are as follows: | `>=` | Trait value is greater than or equal to segment value. | | `<` | Trait value is less than segment value. | | `<=` | Trait value is less than or equal to segment value. | -| `In` | Trait value is equal to one or more elements in a comma delimited list. See [The `In` operator](#the-in-operator). | | +| `In` | Trait value is equal to one or more elements in a comma delimited list. See [The `In` operator](#the-in-operator). | | `Contains` | Segment value is a substring of trait value. | | `Does Not Contain` | Segment value is not a substring of the trait value. | | `Matches Regex` | Segment value, set to a valid Regex expression, is applied to trait value and matches it. |