aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Zubkov <igor.zubkov@gmail.com>2012-09-25 01:50:21 +0300
committerIgor Zubkov <igor.zubkov@gmail.com>2012-09-25 01:50:21 +0300
commitf51d95aee52d86b9d6bd8e1d10d35d73349bfc97 (patch)
tree85899dc4df7c9843c108c5c78ed44e5164bce142
parentc9a6c6c8d18006d92a87c2d09bc9d6e5b0b30086 (diff)
downloadrails-f51d95aee52d86b9d6bd8e1d10d35d73349bfc97.tar.gz
rails-f51d95aee52d86b9d6bd8e1d10d35d73349bfc97.tar.bz2
rails-f51d95aee52d86b9d6bd8e1d10d35d73349bfc97.zip
Fix typo in 4_0_release_notes.md
-rw-r--r--guides/source/4_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index c3921ea541..183715491a 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -538,7 +538,7 @@ Active Record
* `mysql` and `mysql2` connections will set `SQL_MODE=STRICT_ALL_TABLES` by default to avoid silent data loss. This can be disabled by specifying `strict: false` in `config/database.yml`.
-* Added default order to `ActiveRecord::Base#first` to assure consistent results among diferent database engines. Introduced `ActiveRecord::Base#take` as a replacement to the old behavior.
+* Added default order to `ActiveRecord::Base#first` to assure consistent results among different database engines. Introduced `ActiveRecord::Base#take` as a replacement to the old behavior.
* Added an `:index` option to automatically create indexes for `references` and `belongs_to` statements in migrations. This can be either a boolean or a hash that is identical to options available to the `add_index` method: