aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-11-16 07:14:07 -0800
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-11-16 07:14:07 -0800
commit4c76040e78f1c752d32ee802791fcc37c4c78b46 (patch)
tree29048d8241e07c56323b2302bfef13904ca68fad
parent38b312a86f09bcedd597dc9d64db6705650f3216 (diff)
parent76d4dd6e05c5b6937d0a584e4c408936dd33f35f (diff)
downloadrails-4c76040e78f1c752d32ee802791fcc37c4c78b46.tar.gz
rails-4c76040e78f1c752d32ee802791fcc37c4c78b46.tar.bz2
rails-4c76040e78f1c752d32ee802791fcc37c4c78b46.zip
Merge pull request #12916 from petervandenabeele/typo_4_0_release_notes
[ci skip] typo in ArgumentError in 4_0_release_notes.md
-rw-r--r--guides/source/4_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index 3790beccdf..c0eb77c1e7 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -173,7 +173,7 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/4-0-stable/a
* `Object#try` will now return nil instead of raise a NoMethodError if the receiving object does not implement the method, but you can still get the old behavior by using the new `Object#try!`.
-* `String#to_date` now raises `Argument Error: invalid date` instead of `NoMethodError: undefined method 'div' for nil:NilClass`
+* `String#to_date` now raises `ArgumentError: invalid date` instead of `NoMethodError: undefined method 'div' for nil:NilClass`
when given an invalid date. It is now the same as `Date.parse`, and it accepts more invalid dates than 3.x, such as:
```