aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2017-10-25 11:22:57 -0400
committerGitHub <noreply@github.com>2017-10-25 11:22:57 -0400
commitdf4632fece02d5a780f6d71e688499cb7b4bfcf3 (patch)
tree2f62c93e5b66999faeb12b52d5fdac54c4dcfd21 /guides/source/action_controller_overview.md
parent7e6cdc1c2f3c06f2829b74afd956aca04632025b (diff)
parent4db3449d34cfad338114d00e760bb29f263916db (diff)
downloadrails-df4632fece02d5a780f6d71e688499cb7b4bfcf3.tar.gz
rails-df4632fece02d5a780f6d71e688499cb7b4bfcf3.tar.bz2
rails-df4632fece02d5a780f6d71e688499cb7b4bfcf3.zip
Merge pull request #30982 from willnet/add-space-before-curly-brace
[ci skip]Add space before closing curly brace
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index d53c4dedf9..28f7246197 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -654,8 +654,8 @@ class UsersController < ApplicationController
@users = User.all
respond_to do |format|
format.html # index.html.erb
- format.xml { render xml: @users}
- format.json { render json: @users}
+ format.xml { render xml: @users }
+ format.json { render json: @users }
end
end
end