diff options
author | willnet <netwillnet@gmail.com> | 2017-10-25 13:29:18 +0900 |
---|---|---|
committer | willnet <netwillnet@gmail.com> | 2017-10-25 13:29:18 +0900 |
commit | 4db3449d34cfad338114d00e760bb29f263916db (patch) | |
tree | 3ee80e4c434c74ae4d45e3560bcdfa24db784989 | |
parent | 0beb22d6d15cb639c131bc135bc917112581ccd6 (diff) | |
download | rails-4db3449d34cfad338114d00e760bb29f263916db.tar.gz rails-4db3449d34cfad338114d00e760bb29f263916db.tar.bz2 rails-4db3449d34cfad338114d00e760bb29f263916db.zip |
[ci skip]Add space before closing curly brace
-rw-r--r-- | guides/source/action_controller_overview.md | 4 |
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 |