diff options
author | Matthew Draper <matthew@trebex.net> | 2016-12-01 21:24:00 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-01 21:23:59 +1030 |
commit | a1dbc4ee0b01e4a15bdea9108a776a982ce4158e (patch) | |
tree | a7fbc70122b9c811c40d6a2f986f969ed8404399 /activerecord | |
parent | 00797f14a4882942560c8a0945ab5c2f085c4625 (diff) | |
parent | 634f2238422fc1ea48f2f812ecd678fed159ccbc (diff) | |
download | rails-a1dbc4ee0b01e4a15bdea9108a776a982ce4158e.tar.gz rails-a1dbc4ee0b01e4a15bdea9108a776a982ce4158e.tar.bz2 rails-a1dbc4ee0b01e4a15bdea9108a776a982ce4158e.zip |
Merge pull request #27240 from nanaya/accidentally-heading
Prevent issue number in documentation from becoming markdown header [ci skip]
Diffstat (limited to 'activerecord')
-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 |