aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/aggregations.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-07-06 02:05:09 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-07-06 02:05:09 +0000
commit63375b9ef2bd9f8bc79c1ad4ea6b374d7cac6260 (patch)
treed94f55bfa02aa6ebb57374f8fea5dbfab3db7114 /activerecord/lib/active_record/aggregations.rb
parentfefe6591f660fae94b59e88c998a22bf49b5ea37 (diff)
downloadrails-63375b9ef2bd9f8bc79c1ad4ea6b374d7cac6260.tar.gz
rails-63375b9ef2bd9f8bc79c1ad4ea6b374d7cac6260.tar.bz2
rails-63375b9ef2bd9f8bc79c1ad4ea6b374d7cac6260.zip
Grammar fix in aggregations rdoc. Closes #5613.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4561 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/aggregations.rb')
-rw-r--r--activerecord/lib/active_record/aggregations.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index f6b604c118..a137a11cd4 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -109,8 +109,8 @@ module ActiveRecord
# Read more about value objects on http://c2.com/cgi/wiki?ValueObject and on the dangers of not keeping value objects
# immutable on http://c2.com/cgi/wiki?ValueObjectsShouldBeImmutable
module ClassMethods
- # Adds the a reader and writer method for manipulating a value object, so
- # <tt>composed_of :address</tt> would add <tt>address</tt> and <tt>address=(new_address)</tt>.
+ # Adds reader and writer methods for manipulating a value object:
+ # <tt>composed_of :address</tt> adds <tt>address</tt> and <tt>address=(new_address)</tt> methods.
#
# Options are:
# * <tt>:class_name</tt> - specify the class name of the association. Use it only if that name can't be inferred