diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-31 08:38:37 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-31 08:38:37 +0900 |
commit | b89a3e7e638a50c648a17d09c48b49b707e1d90d (patch) | |
tree | 67c403d84bc17d591692610134e63ade5305761c /activemodel | |
parent | 2bf55179813190f2a79509383e21c2b43e72f4c2 (diff) | |
download | rails-b89a3e7e638a50c648a17d09c48b49b707e1d90d.tar.gz rails-b89a3e7e638a50c648a17d09c48b49b707e1d90d.tar.bz2 rails-b89a3e7e638a50c648a17d09c48b49b707e1d90d.zip |
Tweaks CHANGELOGs and docs [ci skip]
* add leading `#` before `=>` since hash rocket is valid Ruby code
* add backticks
* remove trailing spaces
* and more
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/CHANGELOG.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index 74a0913b6f..ad87abfa3a 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -41,12 +41,12 @@ Before: Day.new({"day(1i)"=>"1", "day(2i)"=>"1", "day(3i)"=>"1"}) - => #<Day id: nil, day: "0001-01-03", created_at: nil, updated_at: nil> + # => #<Day id: nil, day: "0001-01-03", created_at: nil, updated_at: nil> After: Day.new({"day(1i)"=>"1", "day(2i)"=>"1", "day(3i)"=>"1"}) - => #<Day id: nil, day: "0001-01-01", created_at: nil, updated_at: nil> + # => #<Day id: nil, day: "0001-01-01", created_at: nil, updated_at: nil> Fixes #28521. |