summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-14 23:57:13 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-15 00:03:17 +0900
commit6b3a808b8476b61d6327f0c7a134736c1369779d (patch)
treeec6d12da94790a4bdb78b61e8c36fc4219651736 /NEWS.md
parentb3e99b36765f99add04e8106b85bb32f3d3022f7 (diff)
Fix code block indents [ci skip]
RDoc::Markdown requires all block elements nested under bullet list to be indended deeper than the first column of the list.
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/NEWS.md b/NEWS.md
index 4a5b8cc318..6279aaca57 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -58,23 +58,23 @@ sufficient information, see the ChangeLog file or Redmine
* `=>` is added. It can be used as like rightward assignment.
[[Feature #17260]]
- ```ruby
- 0 => a
- p a #=> 0
+ ```ruby
+ 0 => a
+ p a #=> 0
- {b: 0, c: 1} => {b:}
- p b #=> 0
- ```
+ {b: 0, c: 1} => {b:}
+ p b #=> 0
+ ```
* `in` is changed to return `true` or `false`. [[Feature #17371]]
- ```ruby
- # version 3.0
- 0 in 1 #=> false
+ ```ruby
+ # version 3.0
+ 0 in 1 #=> false
- # version 2.7
- 0 in 1 #=> raise NoMatchingPatternError
- ```
+ # version 2.7
+ 0 in 1 #=> raise NoMatchingPatternError
+ ```
* Find pattern is added. [EXPERIMENTAL]
[[Feature #16828]]