aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-01-04 22:36:49 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-01-04 22:49:14 -0200
commit149b86d97bd14b26cdf1d408567a414418710bcf (patch)
tree89ccc84243d582877856e91afdd57e61babd97d9 /activesupport/CHANGELOG.md
parentee1a03ce6e85160239c28a6e0a83368e7cd8da3a (diff)
downloadrails-149b86d97bd14b26cdf1d408567a414418710bcf.tar.gz
rails-149b86d97bd14b26cdf1d408567a414418710bcf.tar.bz2
rails-149b86d97bd14b26cdf1d408567a414418710bcf.zip
Move changelog entry in railties to the top
Other minor changelog improvements [ci skip]
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 0d2897d79d..cc23ceb02c 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,6 +1,6 @@
## Rails 4.0.0 (unreleased) ##
-* Change String#to_date to use Date.parse. This gives more consistant error
+* Change `String#to_date` to use `Date.parse`. This gives more consistent error
messages and allows the use of partial dates.
"gibberish".to_date => Argument Error: invalid date
@@ -8,8 +8,8 @@
*Kelly Stannard*
-* It's now possible to compare Date, DateTime, Time and TimeWithZone with Infinity
- This allows to create date/time ranges with one infinite bound.
+* It's now possible to compare `Date`, `DateTime`, `Time` and `TimeWithZone`
+ with `Infinity`. This allows to create date/time ranges with one infinite bound.
Example:
range = Range.new(Date.today, Float::INFINITY)