diff options
author | Arun Agrawal <arunagw@gmail.com> | 2015-05-19 13:42:59 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2015-05-19 13:42:59 +0200 |
commit | b7afca19936d5bc90e9209493123f436756b2893 (patch) | |
tree | 4c6fe4208107abedb5c271e0e4261386d92e48c6 /activesupport/CHANGELOG.md | |
parent | 6c55cffa5bb804fc0291ec4aa82527ec3c57f2d2 (diff) | |
parent | 768db0fb10003ebf3f12e9ebe19880c252723abc (diff) | |
download | rails-b7afca19936d5bc90e9209493123f436756b2893.tar.gz rails-b7afca19936d5bc90e9209493123f436756b2893.tar.bz2 rails-b7afca19936d5bc90e9209493123f436756b2893.zip |
Merge pull request #20201 from karanarora/Changelog-fix
Fix typos is CHANGELOG [ci skip]
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r-- | activesupport/CHANGELOG.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 4de0f2ae4c..98954c7f73 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -51,12 +51,12 @@ *Todd Bealmear* -* Fixed a problem where String#truncate_words would get stuck with a complex +* Fixed a problem where `String#truncate_words` would get stuck with a complex string. *Henrik Nygren* -* Fixed a roundtrip problem with AS::SafeBuffer where primitive-like strings +* Fixed a roundtrip problem with `AS::SafeBuffer` where primitive-like strings will be dumped as primitives: Before: @@ -103,7 +103,7 @@ *Ian Ker-Seymer* -* Duplicate frozen array when assigning it to a HashWithIndifferentAccess so +* Duplicate frozen array when assigning it to a `HashWithIndifferentAccess` so that it doesn't raise a `RuntimeError` when calling `map!` on it in `convert_value`. Fixes #18550. @@ -132,7 +132,7 @@ * Add `#on_weekend?`, `#next_weekday`, `#prev_weekday` methods to `Date`, `Time`, and `DateTime`. - `#on_weekend?` returns true if the receiving date/time falls on a Saturday + `#on_weekend?` returns `true` if the receiving date/time falls on a Saturday or Sunday. `#next_weekday` returns a new date/time representing the next day that does @@ -186,13 +186,13 @@ `Callbacks::CallbackChain.halt_and_display_warning_on_return_false`, will either not work at all or display a deprecation warning. -* Add Callbacks::CallbackChain.halt_and_display_warning_on_return_false +* Add `Callbacks::CallbackChain.halt_and_display_warning_on_return_false` Setting `Callbacks::CallbackChain.halt_and_display_warning_on_return_false` - to true will let an app support the deprecated way of halting callback + to `true` will let an app support the deprecated way of halting callback chains by returning `false`. - Setting the value to false will tell the app to ignore any `false` value + Setting the value to `false` will tell the app to ignore any `false` value returned by callbacks, and only halt the chain upon `throw(:abort)`. The value can also be set with the Rails configuration option @@ -205,7 +205,7 @@ *claudiob* -* Changes arguments and default value of CallbackChain's :terminator option +* Changes arguments and default value of CallbackChain's `:terminator` option Chains of callbacks defined without an explicit `:terminator` option will now be halted as soon as a `before_` callback throws `:abort`. |