1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #20201 from karanarora/Changelog-fix

Fix typos is CHANGELOG [ci skip]
This commit is contained in:
Arun Agrawal 2015-05-19 13:42:59 +02:00
commit b7afca1993

View file

@ -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`.