diff options
author | Alexey Vakhov <vakhov@gmail.com> | 2012-02-12 10:52:12 +0400 |
---|---|---|
committer | Alexey Vakhov <vakhov@gmail.com> | 2012-02-12 10:52:12 +0400 |
commit | 8934bda200b07e28955dfc5814a92c3cdeab8d3f (patch) | |
tree | ebfdde3b76f61bad9fbd5b1e436a16eba3a82a58 | |
parent | 294fb94cff07108f933e24fff2fab0afff065eb3 (diff) | |
download | rails-8934bda200b07e28955dfc5814a92c3cdeab8d3f.tar.gz rails-8934bda200b07e28955dfc5814a92c3cdeab8d3f.tar.bz2 rails-8934bda200b07e28955dfc5814a92c3cdeab8d3f.zip |
Cosmetic fix in AM readme
-rw-r--r-- | actionmailer/README.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/README.rdoc b/actionmailer/README.rdoc index 4c2516db59..755717cfba 100644 --- a/actionmailer/README.rdoc +++ b/actionmailer/README.rdoc @@ -82,7 +82,7 @@ Note that every value you set with this method will get over written if you use Example: - class Authenticationmailer < ActionMailer::Base + class AuthenticationMailer < ActionMailer::Base default :from => "awesome@application.com", :subject => Proc.new { "E-mail was generated at #{Time.now}" } ..... end |