Skip to content

Commit

Permalink
docs: put => patch. (#1793) (#1938)
Browse files Browse the repository at this point in the history
  • Loading branch information
mosaic101 authored and dead-horse committed Jan 19, 2018
1 parent dede240 commit b2d09e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/en/basics/router.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ GET | /posts/new | new_post | app.controllers.posts.new
GET | /posts/:id | post | app.controllers.posts.show
GET | /posts/:id/edit | edit_post | app.controllers.posts.edit
POST | /posts | posts | app.controllers.posts.create
PUT | /posts/:id | post | app.controllers.posts.update
PATCH | /posts/:id | post | app.controllers.posts.update
DELETE | /posts/:id | post | app.controllers.posts.destroy

```js
Expand Down

0 comments on commit b2d09e1

Please sign in to comment.