From c791982256cb2791a34617598ec1825143a9b370 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Mon, 12 Feb 2018 22:37:03 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8ee5d0c..c6c7a61 100644 --- a/README.md +++ b/README.md @@ -63,21 +63,21 @@ http GET localhost:5000/api/v1/notice/{id}/comments ### POST ```bash -http GET localhost:5000/api/v1/notice +http POST localhost:5000/api/v1/notice ``` ```bash -http GET localhost:5000/api/v1/notice/{id}/comments +http POST localhost:5000/api/v1/notice/{id}/comments ``` ### PATCH ```bash -http GET localhost:5000/api/v1/notice/{id} +http PATCH localhost:5000/api/v1/notice/{id} ``` ### DELETE ```bash -http GET localhost:5000/api/v1/notice/{id} +http DELETE localhost:5000/api/v1/notice/{id} ```