aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/aggregations.rb
diff options
context:
space:
mode:
authorOscar Del Ben <info@oscardelben.com>2012-05-19 10:53:52 -0700
committerOscar Del Ben <info@oscardelben.com>2012-05-19 10:53:52 -0700
commitba896d37e3b43ec19cf86b7a6452718d9077db20 (patch)
tree83f9964c40bb4c47cac556850cfb51257b1e5faa /activerecord/lib/active_record/aggregations.rb
parentfae4a263c9ac45beb83307371cadf31da6d59d71 (diff)
downloadrails-ba896d37e3b43ec19cf86b7a6452718d9077db20.tar.gz
rails-ba896d37e3b43ec19cf86b7a6452718d9077db20.tar.bz2
rails-ba896d37e3b43ec19cf86b7a6452718d9077db20.zip
Revert typo
Diffstat (limited to 'activerecord/lib/active_record/aggregations.rb')
-rw-r--r--activerecord/lib/active_record/aggregations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index 7eeb16f0e8..6ad16bee2b 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -109,7 +109,7 @@ module ActiveRecord
# It's also important to treat the value objects as immutable. Don't allow the Money object to have
# its amount changed after creation. Create a new Money object with the new value instead. The
# Money#exchange_to method is an example of this. It returns a new value object instead of changing
- # its own values. Active Record wont persist value objects that have been changed through means
+ # its own values. Active Record won't persist value objects that have been changed through means
# other than the writer method.
#
# The immutable requirement is enforced by Active Record by freezing any object assigned as a value