diff options
author | nanaya <me@myconan.net> | 2016-12-01 14:27:05 +0900 |
---|---|---|
committer | nanaya <me@myconan.net> | 2016-12-01 14:27:05 +0900 |
commit | 634f2238422fc1ea48f2f812ecd678fed159ccbc (patch) | |
tree | a7fbc70122b9c811c40d6a2f986f969ed8404399 | |
parent | 00797f14a4882942560c8a0945ab5c2f085c4625 (diff) | |
download | rails-634f2238422fc1ea48f2f812ecd678fed159ccbc.tar.gz rails-634f2238422fc1ea48f2f812ecd678fed159ccbc.tar.bz2 rails-634f2238422fc1ea48f2f812ecd678fed159ccbc.zip |
Fix issue number from becoming markdown header
The alternative is escaping it but moving around the text seems a bit simpler.
-rw-r--r-- | activerecord/CHANGELOG.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 357e4c3016..96d0ad3b30 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -32,8 +32,8 @@ of `Article.category(true)` where `category` is a singular association. - The force reloading of the association reader was deprecated in - #20888. Unfortunately the suggested alternative of + The force reloading of the association reader was deprecated + in #20888. Unfortunately the suggested alternative of `article.reload.category` does not expose the same behavior. This patch adds a reader method with the prefix `reload_` for |