From 7ea68e5dc452acb5f5703137ba928fa23079236a Mon Sep 17 00:00:00 2001 From: Adriano Vieira Date: Fri, 4 Mar 2022 10:40:11 -0300 Subject: [PATCH] Update other-operators.md English version (#856) - Update English version of other-operators.md according to its Portuguese version Signed-off-by: Adriano Vieira --- content/en/api/operations/other-operators.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/api/operations/other-operators.md b/content/en/api/operations/other-operators.md index 807593ce2..95b8fba09 100644 --- a/content/en/api/operations/other-operators.md +++ b/content/en/api/operations/other-operators.md @@ -1,6 +1,6 @@ --- title: Other operators -weight: 348 +weight: 373 description: You will find a description of other operators. --- @@ -16,7 +16,7 @@ description: You will find a description of other operators. ### Example -A context with `numbersArray` id that has **\[0, 1, 2, 3, 4\]** as value and the operation length was used in one component Text to get the size of this array, see below: +A context with `numbersArray` id that has **\[0, 1, 2, 3, 4\]** as value and the operation `length` was used in one component Text to get the size of this array, see below: {{< tabs id="T146" >}} {{% tab name="JSON" %}} @@ -53,7 +53,7 @@ fun screen() = Screen(child = Text(text = "Array [0, 1, 2, 3, 4] has size: "), Text( expressionOf("@{length(numbersArray)}") - ).setStyle{ backgroundColor = "#00FF00" } + ).setStyle{ backgroundColor = constant("#00FF00") } ) ) )