aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorwillnet <netwillnet@gmail.com>2017-10-25 13:29:18 +0900
committerwillnet <netwillnet@gmail.com>2017-10-25 13:29:18 +0900
commit4db3449d34cfad338114d00e760bb29f263916db (patch)
tree3ee80e4c434c74ae4d45e3560bcdfa24db784989 /guides
parent0beb22d6d15cb639c131bc135bc917112581ccd6 (diff)
downloadrails-4db3449d34cfad338114d00e760bb29f263916db.tar.gz
rails-4db3449d34cfad338114d00e760bb29f263916db.tar.bz2
rails-4db3449d34cfad338114d00e760bb29f263916db.zip
[ci skip]Add space before closing curly brace
Diffstat (limited to 'guides')
-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