diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 5ecefe7c09..d020fdffc2 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -38,7 +38,7 @@ module ActionMailer #:nodoc:
# * cc - Takes one or more email addresses. These addresses will receive a carbon copy of your email. Sets the Cc: header.
# * bcc - Takes one or more email addresses. These addresses will receive a blind carbon copy of your email. Sets the Bcc: header.
# * reply_to - Takes one or more email addresses. These addresses will be listed as the default recipients when replying to your email. Sets the Reply-To: header.
- # * sent_on - The date on which the message was sent. If not set, the header wil be set by the delivery agent.
+ # * sent_on - The date on which the message was sent. If not set, the header will be set by the delivery agent.
# * content_type - Specify the content type of the message. Defaults to text/plain.
# * headers - Specify additional headers to be set for the message, e.g. headers 'X-Mail-Count' => 107370.
#