From 852432c70a82e066f031d4021ca2367f60d6de7f Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Sun, 1 Oct 2023 05:46:57 -0400 Subject: [PATCH] Specify output --- en/reference/indexing-language-reference.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/en/reference/indexing-language-reference.html b/en/reference/indexing-language-reference.html index 3ee5df67ad..20c6d3c8bf 100644 --- a/en/reference/indexing-language-reference.html +++ b/en/reference/indexing-language-reference.html @@ -470,7 +470,7 @@

Other expressions

- if (<lhs> <cmp> <rhs>) {
+ if (<left> <cmp> <right>) {
    <trueScript>
}
[ else { <falseScript> } ] @@ -479,7 +479,9 @@

Other expressions

Executes the trueScript if the conditional evaluates to true, or the falseScript if it evaluates to false. - If either lhs or rhs is null, no expression is executed. + If either left or right is null, no expression is executed. + The value produced is the value returned from the chosen branch, and these must + produce values of compatible types (or none).