aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-04-18 04:37:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-04-18 04:37:18 +0000
commitb170fd771ca6ed6818a1983e136d9f6aca1f3531 (patch)
tree5c9d10a62b6429de96c2d66fe4691f9e3be4608a
parent06dd5d9c7f744ea6d6e131133f84c17ec4911134 (diff)
downloadrails-b170fd771ca6ed6818a1983e136d9f6aca1f3531.tar.gz
rails-b170fd771ca6ed6818a1983e136d9f6aca1f3531.tar.bz2
rails-b170fd771ca6ed6818a1983e136d9f6aca1f3531.zip
Doc fix
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4225 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-xactiverecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 106432ed9e..d7cbd010da 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -1645,7 +1645,7 @@ module ActiveRecord #:nodoc:
# This behaviour can be controlled with :only, :except, and :skip_instruct
# for instance:
#
- # topic.to_xml(:skip_instruct => true, :except => [ :id, bonus_time, :written_on, replies_count ])
+ # topic.to_xml(:skip_instruct => true, :except => [ :id, :bonus_time, :written_on, :replies_count ])
#
# <topic>
# <title>The First Topic</title>