Skip to content

Commit

Permalink
✂️
Browse files Browse the repository at this point in the history
This commit also addresses rails/docrails#169 and rails#14159
  • Loading branch information
Zachary Scott committed Feb 23, 2014
1 parent b91d761 commit f302079
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion actionmailer/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Example:
)

if email.has_attachments?
email.attachments.each do |attachment|
email.attachments.each do |attachment|
page.attachments.create({
file: attachment, description: email.subject
})
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ module ActionMailer
# Hi <%= @account.name %>,
# Thanks for joining our service! Please check back often.
#
# You can even use Action Pack helpers in these views. For example:
# You can even use Action View helpers in these views. For example:
#
# You got a new note!
# <%= truncate(@note.body, length: 25) %>
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_dispatch/middleware/cookies.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def cookie_jar
#
# domain: nil # Does not sets cookie domain. (default)
# domain: :all # Allow the cookie for the top most level
# domain and subdomains.
# # domain and subdomains.
#
# * <tt>:expires</tt> - The time at which this cookie expires, as a \Time object.
# * <tt>:secure</tt> - Whether this cookie is only transmitted to HTTPS servers.
Expand Down

0 comments on commit f302079

Please sign in to comment.