aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-11-11 07:22:28 +0100
committerXavier Noria <fxn@hashref.com>2015-11-11 07:22:28 +0100
commite42a5fd3d579f60594fbed2f0f728e434da123b9 (patch)
treee9770542a8c9cc7df26c232b71bc4d2e98ea1e6d
parentd0ae8adfb715cc647b1d0c1c385a8e649cf87445 (diff)
downloadrails-e42a5fd3d579f60594fbed2f0f728e434da123b9.tar.gz
rails-e42a5fd3d579f60594fbed2f0f728e434da123b9.tar.bz2
rails-e42a5fd3d579f60594fbed2f0f728e434da123b9.zip
normalizes spacing in a CHANGELOG [ci skip]
-rw-r--r--activesupport/CHANGELOG.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index faa4a3d6fc..9a00825247 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -9,17 +9,17 @@
*Puneet Agarwal* and *Xavier Noria*
-* Added `Time#days_in_year` to return the number of days in the given year, or the
- current year if no argument is provided.
+* Added `Time#days_in_year` to return the number of days in the given year, or the
+ current year if no argument is provided.
- *Jon Pascoe*
+ *Jon Pascoe*
-* Updated `parameterize` to preserve the case of a string, optionally.
+* Updated `parameterize` to preserve the case of a string, optionally.
Example:
- parameterize("Donald E. Knuth", separator: '_') # => "donald_e_knuth"
- parameterize("Donald E. Knuth", preserve_case: true) # => "Donald-E-Knuth"
+ parameterize("Donald E. Knuth", separator: '_') # => "donald_e_knuth"
+ parameterize("Donald E. Knuth", preserve_case: true) # => "Donald-E-Knuth"
*Swaathi Kakarla*