Updated description of logical or

This commit is contained in:
txgruppi
2015-01-05 09:42:34 +00:00
parent 84ead3bb18
commit 59c2024384

View File

@ -210,7 +210,7 @@ and returns the right-hand argument.
IO.print(1 && 2) // 2
An `||` ("logical or") expression is reversed. If the left-hand argument is
[false](control-flow.html#truth), it's returned, otherwise the right-hand
[true](control-flow.html#truth), it's returned, otherwise the right-hand
argument is evaluated and returned:
:::dart