diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-01-03 21:57:39 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2017-01-03 21:57:39 +0100 |
commit | 8740c6ea0f428a2b2e5dd76a1e415c62ee64b28c (patch) | |
tree | b7dd03f7aced5ff8cee2577fabe158852a1ffc1d /activerecord | |
parent | 4b6709e818177792735e99a70ec03210c0ac38dc (diff) | |
download | rails-8740c6ea0f428a2b2e5dd76a1e415c62ee64b28c.tar.gz rails-8740c6ea0f428a2b2e5dd76a1e415c62ee64b28c.tar.bz2 rails-8740c6ea0f428a2b2e5dd76a1e415c62ee64b28c.zip |
[ci skip] Find and record the article! 🤓
Closes #27555.
[ Ben A. Morgan & Kasper Timm Hansen ]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/persistence.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index 60d8e95b21..63d8a201f0 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -392,8 +392,8 @@ module ActiveRecord # Reloads the record from the database. # - # This method finds record by its primary key (which could be assigned manually) and - # modifies the receiver in-place: + # This method finds the record by its primary key (which could be assigned + # manually) and modifies the receiver in-place: # # account = Account.new # # => #<Account id: nil, email: nil> |