From 9cfbcfb928172fe28003e2df725dae2db9879fc0 Mon Sep 17 00:00:00 2001 From: Chandan Rai Date: Thu, 6 Jul 2017 01:44:33 +0530 Subject: [PATCH] corrected minor typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95b5790..547c2c5 100644 --- a/README.md +++ b/README.md @@ -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