From 817f37bbf0587eceb0cd22fcbc6f8a43097dd9f8 Mon Sep 17 00:00:00 2001 From: Kyle Marek-Spartz Date: Thu, 8 Jan 2015 09:32:50 -0600 Subject: [PATCH] Docs: Expressions: Operators: they->their typo --- 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 7a596d5f..4638be4e 100644 --- a/doc/site/expressions.markdown +++ b/doc/site/expressions.markdown @@ -198,7 +198,7 @@ The `&&` and `||` operators are not like the other infix operators. They work more like [control flow](control-flow.html) structures than operators because they conditionally execute some code—they short-circuit. Depending on the value of the left-hand side, the right-hand operand expression may or may not -be evaluated. Because of this, they cannot be overloaded and they behavior is +be evaluated. Because of this, they cannot be overloaded and their behavior is fixed. A `&&` ("logical and") expression evaluates the left-hand argument. If it's