summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/NEWS b/doc/NEWS
index 113e4545e1..0e84050c59 100644
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -1,3 +1,36 @@
+: String#chomp
+
+ if $/ == '\n', chops off last newlines (any of \n, \r, \r\n).
+
+: IO#puts
+
+ do not treat Array specially.
+
+: Module::new/Class::new
+
+ takes block.
+
+: allocation framework
+
+ any instance of class can be allocated by class.allocate,
+ (except a few classes).
+
+: String#[]
+
+ starting offset can be specified as optional second parameter.
+
+: String/Array methods
+
+ returns an instance of receivers class.
+
+: String::new
+
+ returns "".
+
+: Dir#path
+
+ Added.
+
: Enum#sort_by
Added.