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