Docs: Expressions: Operators: they->their typo

This commit is contained in:
Kyle Marek-Spartz
2015-01-08 09:32:50 -06:00
parent 1e6241a7df
commit 817f37bbf0

View File

@ -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