aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorSunny Ripert <sunny@sunfox.org>2013-05-28 14:34:47 +0200
committerSunny Ripert <sunny@sunfox.org>2013-05-28 14:38:02 +0200
commit606c09b8dbaa65ab124baaa0ee62a885a25a2222 (patch)
tree2ce87343100ce90b7ba2b677c0a81c2a567cc528 /guides/source/upgrading_ruby_on_rails.md
parent666d028bb82428a0649935b1d1814db0e20a406f (diff)
downloadrails-606c09b8dbaa65ab124baaa0ee62a885a25a2222.tar.gz
rails-606c09b8dbaa65ab124baaa0ee62a885a25a2222.tar.bz2
rails-606c09b8dbaa65ab124baaa0ee62a885a25a2222.zip
Consistent use of one space only after punctuation
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 694592a9de..3d9c2b8318 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -34,7 +34,7 @@ resources :users
the action in `UsersController` to update a user is still `update`.
`PUT` requests to `/users/:id` in Rails 4 get routed to `update` as they are
-today. So, if you have an API that gets real PUT requests it is going to work.
+today. So, if you have an API that gets real PUT requests it is going to work.
The router also routes `PATCH` requests to `/users/:id` to the `update` action.
So, in Rails 4 both `PUT` and `PATCH` are routed to update. We recommend