We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb324e commit 87e78e6Copy full SHA for 87e78e6
NEWS.md
@@ -12,7 +12,7 @@ Note that each entry is kept to a minimum, see links for details.
12
13
* Logical binary operators (`||`, `&&`, `and` and `or`) at the
14
beginning of a line continue the previous line, like fluent dot.
15
- The following two code examples are equal:
+ The following code examples are equal:
16
17
```ruby
18
if condition1
@@ -21,12 +21,21 @@ Note that each entry is kept to a minimum, see links for details.
21
end
22
```
23
24
+ Previously:
25
+
26
27
if condition1 && condition2
28
...
29
30
31
32
+ ```ruby
33
+ if condition1 &&
34
+ condition2
35
+ ...
36
+ end
37
+ ```
38
39
[[Feature #20925]]
40
41
## Core classes updates
0 commit comments