1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip]Add space before closing curly brace

This commit is contained in:
willnet 2017-10-25 13:29:18 +09:00
parent 0beb22d6d1
commit 4db3449d34

View file

@ -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