aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authornanaya <me@myconan.net>2016-12-01 14:27:05 +0900
committernanaya <me@myconan.net>2016-12-01 14:27:05 +0900
commit634f2238422fc1ea48f2f812ecd678fed159ccbc (patch)
treea7fbc70122b9c811c40d6a2f986f969ed8404399 /activerecord/CHANGELOG.md
parent00797f14a4882942560c8a0945ab5c2f085c4625 (diff)
downloadrails-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.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
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