From 4eb7cdc00a1d656ae383c74ee95faef026bbbdcb Mon Sep 17 00:00:00 2001 From: fcdeveloper00 Date: Sun, 19 Oct 2025 08:03:18 -0700 Subject: [PATCH] Update http-overview.md --- docs/fundamentals/networking/http/http-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fundamentals/networking/http/http-overview.md b/docs/fundamentals/networking/http/http-overview.md index 6b8d5bec9d03e..f6d32c46f70b1 100644 --- a/docs/fundamentals/networking/http/http-overview.md +++ b/docs/fundamentals/networking/http/http-overview.md @@ -21,7 +21,7 @@ Hypertext Transfer Protocol (or HTTP) is a protocol for requesting resources fro ## HTTP request methods -The request methods are differentiated via several factors, first by their _verb_ but also by the following characteristics: + - A request method is **_idempotent_** if it can be successfully processed multiple times without changing the result. For more information, see [RFC 9110: 9.2.2. Idempotent Methods](https://www.rfc-editor.org/rfc/rfc9110.html#name-idempotent-methods). - A request method is **_cacheable_** when its corresponding response can be stored for reuse. For more information, see [RFC 9110: Section 9.2.3. Methods and Caching](https://www.rfc-editor.org/rfc/rfc9110.html#name-methods-and-caching).