From bba2b70949e2b720d364875ae962bb72037bade5 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 10 Mar 2020 12:44:33 +0900 Subject: [PATCH] RDoc markdown parser needs explicit code block or more indents [ci skip] --- NEWS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index eef19bc952..70da707bba 100644 --- a/NEWS.md +++ b/NEWS.md @@ -19,6 +19,7 @@ sufficient information, see the ChangeLog file or Redmine accepting a single rest argument and no keywords. [[Feature #16166]] + ```ruby pr = proc{|*a, **kw| [a, kw]} pr.call([1]) @@ -28,6 +29,7 @@ sufficient information, see the ChangeLog file or Redmine pr.call([1, {a: 1}]) # 2.7 => [[1], {:a=>1}] # and deprecation warning # 3.0 => [[[1, {:a=>1}]], {}] + ``` * $SAFE is now a normal global variable with no special behavior. [[Feature #16131]]