summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-13 00:15:50 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-13 00:15:50 +0000
commitc8a403ebc47759d2a18ac381e1af93c48248ac58 (patch)
tree86fe45ebb65c36d8404b7c716cef0fd814ed48f2 /NEWS
parent7eab4f34ff30aa708aee58b1abab8e4a2772f46b (diff)
* ext/date/date_core.c (date_strftime_alloc): followed the change
of r32885. * NEWS: followed the above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@32959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 7aea2bff40..3cab61b14b 100644
--- a/NEWS
+++ b/NEWS
@@ -163,10 +163,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).