aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-12-03 11:16:54 +0100
committerGitHub <noreply@github.com>2016-12-03 11:16:54 +0100
commit66076f381aad7383568bf28ae1279b0bc570319c (patch)
treecc86a725f7dafef4c52a065e75273d20dda8e97a /guides
parent26ea54aa7d1b0be66d5b99cab6e2f64c80fe4757 (diff)
parentd71f289fb29d7818620725346ed42ea6952708fa (diff)
downloadrails-66076f381aad7383568bf28ae1279b0bc570319c.tar.gz
rails-66076f381aad7383568bf28ae1279b0bc570319c.tar.bz2
rails-66076f381aad7383568bf28ae1279b0bc570319c.zip
Merge pull request #27258 from y-yagi/stop_using_removed_render_text
stop using removed `render :text`
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 34847832fd..0825d54cb7 100644
--- a/guides/source/action_mailer_basics.md
+++ b/guides/source/action_mailer_basics.md
@@ -400,7 +400,7 @@ class UserMailer < ApplicationMailer
mail(to: @user.email,
subject: 'Welcome to My Awesome Site') do |format|
format.html { render 'another_template' }
- format.text { render text: 'Render text' }
+ format.text { render plain: 'Render text' }
end
end
end