aboutsummaryrefslogtreecommitdiffstats
path: root/doc/NEWS-1.9.3
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-13 00:12:05 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-13 00:12:05 +0000
commit0acaab201a821bc6591598775ffc6b6c4980ba9d (patch)
tree0dc788e458e1c53f0d91bdf1dae7022c66dcd948 /doc/NEWS-1.9.3
parentb5f05971f5349753966067e9af2555801a32c1ac (diff)
downloadruby-0acaab201a821bc6591598775ffc6b6c4980ba9d.tar.gz
* ext/date/date_core.c (date_strftime_alloc): followed the change
of r32885. * doc/NEWS-1.9.3: followed the above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/NEWS-1.9.3')
-rw-r--r--doc/NEWS-1.9.36
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/NEWS-1.9.3 b/doc/NEWS-1.9.3
index 1920f197b7..b2b0e8f65c 100644
--- a/doc/NEWS-1.9.3
+++ b/doc/NEWS-1.9.3
@@ -145,10 +145,10 @@ with all sufficient information, see the ChangeLog file.
* A method strftime cannot produce huge output (same as Time's one).
- * Even though Date/DateTime can handle far dates, the following gives
- an empty string:
+ * Even though Date/DateTime can handle far dates, the following causes
+ an exception.
- DateTime.new(1<<10000).strftime('%Y') #=> ""
+ DateTime.new(1<<10000).strftime('%Y') # Errno::ERANGE
* Changed the format of inspect.
* Changed the format of marshal (but, can load old dumps).