aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2015-07-18 17:05:40 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2015-07-18 17:07:58 +0530
commitdafe2997cadfbac38bc92d96b16b7e096cf53735 (patch)
tree187b09a6c148b68e6848b32bcbf90f8ce677c71a /guides/bug_report_templates
parent0daf1619a0631f7a5022645aca3a39b6d1ab7d07 (diff)
downloadrails-dafe2997cadfbac38bc92d96b16b7e096cf53735.tar.gz
rails-dafe2997cadfbac38bc92d96b16b7e096cf53735.tar.bz2
rails-dafe2997cadfbac38bc92d96b16b7e096cf53735.zip
Replaced render :text with render :plain in AC gem bug report template
- Followup of https://github.com/rails/rails/pull/20929. [ci skip]
Diffstat (limited to 'guides/bug_report_templates')
-rw-r--r--guides/bug_report_templates/action_controller_gem.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/bug_report_templates/action_controller_gem.rb b/guides/bug_report_templates/action_controller_gem.rb
index 11561c55f9..58ba708a39 100644
--- a/guides/bug_report_templates/action_controller_gem.rb
+++ b/guides/bug_report_templates/action_controller_gem.rb
@@ -32,7 +32,7 @@ class TestController < ActionController::Base
include Rails.application.routes.url_helpers
def index
- render text: 'Home'
+ render plain: 'Home'
end
end