From 1bfb321e3f9a8761ea06156e4b241a281cf3b533 Mon Sep 17 00:00:00 2001 From: James Milligan <75740990+james-milligan@users.noreply.github.com> Date: Wed, 25 Jan 2023 16:14:41 +0000 Subject: [PATCH] docs: fixed typo (#319) Signed-off-by: James Milligan --- docs/configuration/flag_configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/flag_configuration.md b/docs/configuration/flag_configuration.md index 6acf43c2c..adb9d0844 100644 --- a/docs/configuration/flag_configuration.md +++ b/docs/configuration/flag_configuration.md @@ -18,7 +18,7 @@ Example: ### Variants -`variants` is a **required** property. It is an object containing the possible variations supported by the flag. All the values of the object **must** but the same type (e.g. boolean, numbers, string, JSON). The type used as the variant value will correspond directly affects how the flag is accessed. For example, to use a flag configured with boolean values the `/schema.v1.Service/ResolveBoolean` path should be used. If another path such as `/schema.v1.Service/ResolveString` is called, a type mismatch occurred and an error is returned. +`variants` is a **required** property. It is an object containing the possible variations supported by the flag. All the values of the object **must** be the same type (e.g. boolean, numbers, string, JSON). The type used as the variant value will correspond directly affects how the flag is accessed. For example, to use a flag configured with boolean values the `/schema.v1.Service/ResolveBoolean` path should be used. If another path such as `/schema.v1.Service/ResolveString` is called, a type mismatch occurred and an error is returned. Example: