aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-10-18 13:14:00 -0700
committerZachary Scott <e@zzak.io>2014-10-18 13:14:00 -0700
commite994fa11cfdb3fc6d96068dbb40c309783563b04 (patch)
tree891aa7f2f073a701064b4826273dbbdf92b03f2c /actionmailer
parentb9fcce3944653db5eb49119c134e8525e91f7aee (diff)
downloadrails-e994fa11cfdb3fc6d96068dbb40c309783563b04.tar.gz
rails-e994fa11cfdb3fc6d96068dbb40c309783563b04.tar.bz2
rails-e994fa11cfdb3fc6d96068dbb40c309783563b04.zip
[ci skip] Fix word wrap, capitalization, and spacing of text from #17284
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer/base.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 0216185ffa..798241aaf8 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -636,11 +636,12 @@ module ActionMailer
# * +message-id+
# * +references+
#
- # fields can only appear once in email headers while other fields such as <tt>X-Anything</tt>
- # can appear multiple times. If you want to replace any header which already exists,
- # first set it to nil in order to reset the value otherwise another field will be added
- # for the same header.
+ # Fields can only appear once in email headers while other fields such as
+ # <tt>X-Anything</tt> can appear multiple times.
#
+ # If you want to replace any header which already exists, first set it to
+ # +nil+ in order to reset the value otherwise another field will be added
+ # for the same header.
def headers(args = nil)
if args
@_message.headers(args)