aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-10-04 07:27:33 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-10-04 07:27:33 +0900
commitfced30c3738542211f761bb1ccdeff8441c4587e (patch)
treebf371d8687733a8ad32a8bb857016e72e5577360 /activesupport/CHANGELOG.md
parent723ff351e105a3546f1112e70b7f6d204717127f (diff)
downloadrails-fced30c3738542211f761bb1ccdeff8441c4587e.tar.gz
rails-fced30c3738542211f761bb1ccdeff8441c4587e.tar.bz2
rails-fced30c3738542211f761bb1ccdeff8441c4587e.zip
Cleanup CHANGELOGs [ci skip]
* Add missing credit * Add backticks * Fix indentation * Remove trailing spaces And some minor tweaks.
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index c95f95d076..c7924fa9ae 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -61,12 +61,12 @@
Previously:
'one_two'.camelize(true)
- => nil
+ # => nil
Now:
'one_two'.camelize(true)
- => ArgumentError: Invalid option, use either :upper or :lower.
+ # => ArgumentError: Invalid option, use either :upper or :lower.
*Ricardo Díaz*
@@ -81,12 +81,12 @@
Prior to Rails 5.1:
5.minutes % 2.minutes
- => 60
+ # => 60
Now:
5.minutes % 2.minutes
- => 1 minute
+ # => 1 minute
Fixes #29603 and #29743.