From 59c2024384bb6717445644d37b94fb3500008fbc Mon Sep 17 00:00:00 2001 From: txgruppi Date: Mon, 5 Jan 2015 09:42:34 +0000 Subject: [PATCH] Updated description of logical or --- doc/site/expressions.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/expressions.markdown b/doc/site/expressions.markdown index e9b26a80..7a596d5f 100644 --- a/doc/site/expressions.markdown +++ b/doc/site/expressions.markdown @@ -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