Doc fix (closes #4515)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4124 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2006-04-01 20:10:42 +00:00
parent 53aa8da1a7
commit 12c5287e30
2 changed files with 3 additions and 3 deletions

View File

@@ -188,7 +188,7 @@
...and you can configure with:
topic.to_xml(:skip_instruct => true, :skip_attributes => [ :id, bonus_time, :written_on, replies_count ])
topic.to_xml(:skip_instruct => true, :except => [ :id, bonus_time, :written_on, replies_count ])
...that'll return:

View File

@@ -1636,10 +1636,10 @@ module ActiveRecord #:nodoc:
# <last-read type="date">2004-04-15</last-read>
# </topic>
#
# This behaviour can be controlled with :skip_attributes and :skip_instruct
# This behaviour can be controlled with :only, :except, and :skip_instruct
# for instance:
#
# topic.to_xml(:skip_instruct => true, :skip_attributes => [ :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>