diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-12-25 11:17:51 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-12-25 11:17:51 +0900 |
commit | c903cddf55af1505a0779e1a131f2fe47b838260 (patch) | |
tree | dab2cc78d42d8abdd283c0d7ff9086c0d85d2d70 /doc/syntax/operators.rdoc | |
parent | 70618a48f7f9f12943e963bf121b56af4153f394 (diff) |
Typofix under doc directory
Diffstat (limited to 'doc/syntax/operators.rdoc')
-rw-r--r-- | doc/syntax/operators.rdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/syntax/operators.rdoc b/doc/syntax/operators.rdoc index f972309412..236b3413b5 100644 --- a/doc/syntax/operators.rdoc +++ b/doc/syntax/operators.rdoc @@ -47,9 +47,9 @@ of the operation. === <code>&&</code>, <code>and</code> Both <code>&&</code>/<code>and</code> operators provide short-circuiting by executing each -side of the operator, left to right, and stopping at the first occurence of a +side of the operator, left to right, and stopping at the first occurrence of a falsey expression. The expression that defines the result is the last one -executed, whether it be the final expression, or the first occurence of a falsey +executed, whether it be the final expression, or the first occurrence of a falsey expression. Some examples: |