diff options
| -rw-r--r-- | NEWS.md | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -12,7 +12,7 @@ Note that each entry is kept to a minimum, see links for details. * Logical binary operators (`||`, `&&`, `and` and `or`) at the beginning of a line continue the previous line, like fluent dot. - The following two code examples are equal: + The following code examples are equal: ```ruby if condition1 @@ -21,12 +21,21 @@ Note that each entry is kept to a minimum, see links for details. end ``` + Previously: + ```ruby if condition1 && condition2 ... end ``` + ```ruby + if condition1 && + condition2 + ... + end + ``` + [[Feature #20925]] ## Core classes updates |
