mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-09-18 18:10:39 +03:00
Fix more typos in verb descriptions
This commit is contained in:
@@ -1384,8 +1384,8 @@ A basic HTTP request consists of a verb (method) and a resource (endpoint). Bel
|
||||
| Verb | Description | Idempotent* | Safe | Cacheable |
|
||||
|---|---|---|---|---|
|
||||
| GET | Reads a resource | Yes | Yes | Yes |
|
||||
| POST | Creates a resource or trigger a process that handles data | No | No | Yes if response contains freshness info |
|
||||
| PUT | Creates or replace a resource | Yes | No | No |
|
||||
| POST | Creates a resource or triggers a process that handles data | No | No | Yes if response contains freshness info |
|
||||
| PUT | Creates or replaces a resource | Yes | No | No |
|
||||
| PATCH | Partially updates a resource | No | No | Yes if response contains freshness info |
|
||||
| DELETE | Deletes a resource | Yes | No | No |
|
||||
|
||||
|
Reference in New Issue
Block a user