aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoriarobinson <ian@freedompodcasting.com>2019-03-08 11:14:49 -0800
committeriarobinson <ian@freedompodcasting.com>2019-03-08 11:14:49 -0800
commitcb27f860084abb1f398935d399b12bbbc927552d (patch)
tree9380a943c9b4790537d920e2a546b1c04883af95 /guides
parent2c33932e9b2693eee20b938260fbe44c9f9f5085 (diff)
downloadrails-cb27f860084abb1f398935d399b12bbbc927552d.tar.gz
rails-cb27f860084abb1f398935d399b12bbbc927552d.tar.bz2
rails-cb27f860084abb1f398935d399b12bbbc927552d.zip
- 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: