aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorMichael H <EarthSchlange@users.noreply.github.com>2018-04-02 17:26:56 -0700
committerGitHub <noreply@github.com>2018-04-02 17:26:56 -0700
commit795ff87837b8f3e1fe0454e91763c3f5e596e989 (patch)
tree9ed5ee66fcf54b4899f7c56088421a857c7bee84 /actionmailer
parent9facd9a9039d9f9697c78ddb57c6685cb27e78ea (diff)
downloadrails-795ff87837b8f3e1fe0454e91763c3f5e596e989.tar.gz
rails-795ff87837b8f3e1fe0454e91763c3f5e596e989.tar.bz2
rails-795ff87837b8f3e1fe0454e91763c3f5e596e989.zip
Doc fix added missing quote
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/test_helper.rb b/actionmailer/lib/action_mailer/test_helper.rb
index e9ddef3b94..3b52a08723 100644
--- a/actionmailer/lib/action_mailer/test_helper.rb
+++ b/actionmailer/lib/action_mailer/test_helper.rb
@@ -119,7 +119,7 @@ module ActionMailer
#
# def test_parameterized_email
# assert_enqueued_email_with ContactMailer, :welcome,
- # args: {email: 'user@example.com} do
+ # args: {email: 'user@example.com'} do
# ContactMailer.with(email: 'user@example.com').welcome.deliver_later
# end
# end