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".