summaryrefslogtreecommitdiff
path: root/doc/NEWS-2.7.0
diff options
context:
space:
mode:
authorTaha Husain <taha@bigbinary.com>2020-01-31 13:04:33 +0530
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-02-01 23:06:33 +0900
commit7f6bd6bb1c2220d2d7c17b77abf52fb4af548001 (patch)
tree0a065416acbd7c03765c41781ba36603742fccc6 /doc/NEWS-2.7.0
parenta7e1e310dc828b209852af5535d3a38b704de2c9 (diff)
fix rdoc formatting [ci skip]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2870
Diffstat (limited to 'doc/NEWS-2.7.0')
-rw-r--r--doc/NEWS-2.7.03
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/NEWS-2.7.0 b/doc/NEWS-2.7.0
index 28f6c652de..1e845552de 100644
--- a/doc/NEWS-2.7.0
+++ b/doc/NEWS-2.7.0
@@ -135,8 +135,7 @@ sufficient information, see the ChangeLog file or Redmine
==== Numbered parameters
-* Numbered parameters as default block parameters are introduced.
- [Feature #4475]
+* Numbered parameters as default block parameters are introduced. [Feature #4475]
[1, 2, 10].map { _1.to_s(16) } #=> ["1", "2", "a"]
[[1, 2], [3, 4]].map { _1 + _2 } #=> [3, 7]