aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-03-20 01:11:57 -0700
committerVijay Dev <vijaydev.cse@gmail.com>2013-03-20 01:11:57 -0700
commitc81dc8e373143be00cccb60c3ba4af4228274962 (patch)
tree52e7cb93d5814ac7b679963417a5475ae9982c5e /activerecord/CHANGELOG.md
parenteda39084fa9198083c4e758d052fa862354a0a7e (diff)
parentabd89f96cd51988a50947006c50ae4ff3fe8f040 (diff)
downloadrails-c81dc8e373143be00cccb60c3ba4af4228274962.tar.gz
rails-c81dc8e373143be00cccb60c3ba4af4228274962.tar.bz2
rails-c81dc8e373143be00cccb60c3ba4af4228274962.zip
Merge pull request #9821 from vipulnsward/fix_typos_in_AR
Fix some typos in AR- CHANGELOG, tests, method doc. fixed
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 49cec07ed0..3e368407f2 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -624,7 +624,7 @@
*John Wang*
-* Collection associations `#empty?` always respects builded records.
+* Collection associations `#empty?` always respects built records.
Fixes #8879.
Example:
@@ -1503,7 +1503,7 @@
* Move HABTM validity checks to `ActiveRecord::Reflection`. One side effect of
this is to move when the exceptions are raised from the point of declaration
- to when the association is built. This is consistant with other association
+ to when the association is built. This is consistent with other association
validity checks.
*Andrew White*