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

Fix issue number from becoming markdown header

The alternative is escaping it but moving around the text seems a bit simpler.
This commit is contained in:
nanaya 2016-12-01 14:27:05 +09:00
parent 00797f14a4
commit 634f223842

View file

@ -32,8 +32,8 @@
of `Article.category(true)` where `category` is a singular of `Article.category(true)` where `category` is a singular
association. association.
The force reloading of the association reader was deprecated in The force reloading of the association reader was deprecated
#20888. Unfortunately the suggested alternative of in #20888. Unfortunately the suggested alternative of
`article.reload.category` does not expose the same behavior. `article.reload.category` does not expose the same behavior.
This patch adds a reader method with the prefix `reload_` for This patch adds a reader method with the prefix `reload_` for