aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2019-03-08 20:36:19 +0100
committerGitHub <noreply@github.com>2019-03-08 20:36:19 +0100
commitcc7483d3f081086fe4fcb8f1e2f511e50c929cc5 (patch)
tree9380a943c9b4790537d920e2a546b1c04883af95 /guides
parent2c33932e9b2693eee20b938260fbe44c9f9f5085 (diff)
parentcb27f860084abb1f398935d399b12bbbc927552d (diff)
downloadrails-cc7483d3f081086fe4fcb8f1e2f511e50c929cc5.tar.gz
rails-cc7483d3f081086fe4fcb8f1e2f511e50c929cc5.tar.bz2
rails-cc7483d3f081086fe4fcb8f1e2f511e50c929cc5.zip
Merge pull request #35537 from iarobinson/iarobinson/remove_painfully_from_action_mailer_basics
Remove the word painfully from documentation
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_mailer_basics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md
index 469fa171bc..df74b4ebd0 100644
--- a/guides/source/action_mailer_basics.md
+++ b/guides/source/action_mailer_basics.md
@@ -168,7 +168,7 @@ view and sending it over the HTTP protocol, they are just sending it out through
the email protocols instead. Due to this, it makes sense to just have your
controller tell the Mailer to send an email when a user is successfully created.
-Setting this up is painfully simple.
+Setting this up is simple.
First, let's create a simple `User` scaffold: