Correct spurious documentation example code which results in a SyntaxError.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4210 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Marcel Molina
2006-04-13 10:34:16 +00:00
parent 7a8883eee9
commit b305ef3ef7
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
* Correct spurious documentation example code which results in a SyntaxError. [Marcel Molina Jr.]
*1.2.1* (April 6th, 2005)
* Be part of Rails 1.1.1

View File

@@ -14,7 +14,7 @@ module ActionMailer #:nodoc:
# def signup_notification(recipient)
# recipients recipient.email_address_with_name
# subject "New account information"
# body { "account" => recipient }
# body "account" => recipient
# from "system@example.com"
# end
#