corrected minor typo

This commit is contained in:
Chandan Rai 2017-07-06 01:44:33 +05:30 committed by GitHub
parent 586e23ba4c
commit 9cfbcfb928

View File

@ -210,7 +210,7 @@ GET `/translate?text=Hallo`
Only use nouns in your resource URLs, avoid endpoints like `/addNewUser` or `/updateUser` . Also avoid sending resource operations as a parameter. Instead explain the functionalities using HTTP methods:
* **GET** Used to retrieve a representation of a resource.
* **POST** Used to create new new resources and sub-resources
* **POST** Used to create new resources and sub-resources
* **PUT** Used to update existing resources
* **PATCH** Used to update existing resources. PATCH only updates the fields that were supplied, leaving the others alone
* **DELETE** Used to delete existing resources