aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-05-18 16:39:37 +0100
committerJon Leighton <j@jonathanleighton.com>2012-05-18 16:39:37 +0100
commit1ae68ea35fcbdf43fd86bbf665c67266d61f1308 (patch)
treefb0f042ad3b333f5363e2d872d001b474325234f /activerecord/CHANGELOG.md
parent103ce300ec7507d235ca31efe61033f0b7a601c0 (diff)
downloadrails-1ae68ea35fcbdf43fd86bbf665c67266d61f1308.tar.gz
rails-1ae68ea35fcbdf43fd86bbf665c67266d61f1308.tar.bz2
rails-1ae68ea35fcbdf43fd86bbf665c67266d61f1308.zip
fix typo [ci skip]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index a5841ddf83..8f1f315e42 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -10,7 +10,7 @@
* `find_or_initialize_by_...` can be rewritten using
`where(...).first_or_initialize`
* `find_or_create_by_...` can be rewritten using
- `where(...).first_or_create!`
+ `where(...).first_or_create`
* `find_or_create_by_...!` can be rewritten using
`where(...).first_or_create!`