Skip to content

Commit

Permalink
docfix (email instead of emai)
Browse files Browse the repository at this point in the history
Signed-off-by: José Valim <jose.valim@gmail.com>
  • Loading branch information
dchelimsky authored and josevalim committed Jun 13, 2010
1 parent 50df162 commit c125116
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actionmailer/lib/action_mailer/base.rb
Expand Up @@ -60,21 +60,21 @@ module ActionMailer #:nodoc:
#
# If you want to explicitly render only certain templates, pass a block:
#
# mail(:to => user.emai) do |format|
# mail(:to => user.email) do |format|
# format.text
# format.html
# end
#
# The block syntax is useful if also need to specify information specific to a part:
#
# mail(:to => user.emai) do |format|
# mail(:to => user.email) do |format|
# format.text(:content_transfer_encoding => "base64")
# format.html
# end
#
# Or even to render a special view:
#
# mail(:to => user.emai) do |format|
# mail(:to => user.email) do |format|
# format.text
# format.html { render "some_other_template" }
# end
Expand Down

0 comments on commit c125116

Please sign in to comment.