diff options
author | Marcel Molina <marcel@vernix.org> | 2006-01-13 08:31:07 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-01-13 08:31:07 +0000 |
commit | d40af24e204781c002378936a973fd6ce6a7f6fe (patch) | |
tree | 13dab965c3fbf47a85ab61cc3dfcfea2a019386b | |
parent | 12e0cb7971676fc990f8be87246e8d9f2693aa7a (diff) | |
download | rails-d40af24e204781c002378936a973fd6ce6a7f6fe.tar.gz rails-d40af24e204781c002378936a973fd6ce6a7f6fe.tar.bz2 rails-d40af24e204781c002378936a973fd6ce6a7f6fe.zip |
Fix typo in mailer generator USAGE. Closes #3458.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3411 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/lib/rails_generator/generators/components/mailer/USAGE | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 9532671d84..019f33aefc 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fix typo in mailer generator USAGE. #3458 [chriztian.steinmeier@gmail.com] + * Ignore version mismatch between pg_dump and the database server. #3457 [simon.stapleton@gmail.com] * Reap FCGI processes after lighttpd exits. [Sam Stephenson] diff --git a/railties/lib/rails_generator/generators/components/mailer/USAGE b/railties/lib/rails_generator/generators/components/mailer/USAGE index a036998a1a..f3c295ebd3 100644 --- a/railties/lib/rails_generator/generators/components/mailer/USAGE +++ b/railties/lib/rails_generator/generators/components/mailer/USAGE @@ -13,6 +13,6 @@ Example: This will create a Notifications mailer class: Mailer: app/models/notifications.rb Views: app/views/notifications/signup.rhtml [...] - Test: test/unit/credit_card_controller_test.rb + Test: test/unit/test/unit/notifications_test.rb Fixtures: test/fixtures/notifications/signup [...] |