From a05c94cc8b9d8c0e64688ed7fe737b19f41e6c35 Mon Sep 17 00:00:00 2001 From: Matt Chapman Date: Tue, 9 Jul 2024 19:51:34 -0700 Subject: [PATCH] Update docs/en/docs/tutorial/first-steps.md Remove misleading description of `PUT` and reclassify as 'exotic'. --- docs/en/docs/tutorial/first-steps.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/en/docs/tutorial/first-steps.md b/docs/en/docs/tutorial/first-steps.md index d18b25d97141c..d043e2c903a34 100644 --- a/docs/en/docs/tutorial/first-steps.md +++ b/docs/en/docs/tutorial/first-steps.md @@ -209,11 +209,11 @@ One of: * `POST` * `GET` -* `PUT` * `DELETE` ...and the more exotic ones: +* `PUT` * `OPTIONS` * `HEAD` * `PATCH` @@ -227,9 +227,8 @@ When building APIs, you normally use these specific HTTP methods to perform a sp Normally you use: -* `POST`: to create data. +* `POST`: to create or update data. * `GET`: to read data. -* `PUT`: to update data. * `DELETE`: to delete data. So, in OpenAPI, each of the HTTP methods is called an "operation".