summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2019-11-20 17:21:38 +0900
committerKoichi Sasada <ko1@atdot.net>2019-11-20 17:21:50 +0900
commitae818b589efcb5dca47d9ceb888cb658ef56e286 (patch)
tree0571268650fb48c378377d7eb98103088403d607
parentfc22b0eaa3fa073f622917364cbb573cd6ba2bfc (diff)
add a NEWS entry for Method#inspect
-rw-r--r--NEWS17
1 files changed, 12 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index ce462d542c..f806fe848c 100644
--- a/NEWS
+++ b/NEWS
@@ -340,13 +340,11 @@ Integer::
0b01001100[2...6] #=> 0b0011
^^^^
-NilClass / TrueClass / FalseClass::
+Method::
- Modified methods::
+ Modified method::
- * NilClass#to_s, TrueClass#to_s and FalseClass#to_s now always return a
- frozen String. The returned String is always the same for each of these
- values. This change is experimental. [Feature #16150]
+ * Method#inspect shows much information. [Feature #14145]
Module::
@@ -369,6 +367,15 @@ Module::
always the same for a given Module. This change is
experimental. [Feature #16150]
+
+NilClass / TrueClass / FalseClass::
+
+ Modified methods::
+
+ * NilClass#to_s, TrueClass#to_s and FalseClass#to_s now always return a
+ frozen String. The returned String is always the same for each of these
+ values. This change is experimental. [Feature #16150]
+
ObjectSpace::WeakMap::
Modified method::