aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/serializers
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2007-11-08 03:37:16 +0000
committerMarcel Molina <marcel@vernix.org>2007-11-08 03:37:16 +0000
commit7143d80147ea26c66dfa1dd4bb82f066d72f6570 (patch)
tree066af9459361f182fa25786b99e44fcb7415941d /activerecord/lib/active_record/serializers
parent709dc33c927652cc5ffb5758811e036336c95038 (diff)
downloadrails-7143d80147ea26c66dfa1dd4bb82f066d72f6570.tar.gz
rails-7143d80147ea26c66dfa1dd4bb82f066d72f6570.tar.bz2
rails-7143d80147ea26c66dfa1dd4bb82f066d72f6570.zip
Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8113 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/serializers')
-rw-r--r--activerecord/lib/active_record/serializers/xml_serializer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/serializers/xml_serializer.rb b/activerecord/lib/active_record/serializers/xml_serializer.rb
index 16448bae77..28e9b3ddc6 100644
--- a/activerecord/lib/active_record/serializers/xml_serializer.rb
+++ b/activerecord/lib/active_record/serializers/xml_serializer.rb
@@ -1,7 +1,7 @@
module ActiveRecord #:nodoc:
module Serialization
# Builds an XML document to represent the model. Some configuration is
- # available through +options+, however more complicated cases should use
+ # available through +options+, however more complicated cases should
# override ActiveRecord's to_xml.
#
# By default the generated XML document will include the processing
@@ -107,7 +107,7 @@ module ActiveRecord #:nodoc:
# </creator>
# </firm>
#
- # You may override the to_xml method in your ActiveRecord::Base
+ # You can override the to_xml method in your ActiveRecord::Base
# subclasses if you need to. The general form of doing this is
#
# class IHaveMyOwnXML < ActiveRecord::Base