From fc577878fa29a23248fba29e14eb67beb54aaaa2 Mon Sep 17 00:00:00 2001 From: Takuya Aramaki Date: Wed, 19 Jul 2023 19:47:07 +0900 Subject: [PATCH] Update description of conditional headers (#27645) --- files/en-us/web/http/conditional_requests/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/en-us/web/http/conditional_requests/index.md b/files/en-us/web/http/conditional_requests/index.md index 71047f36dcac9cf..a48a41f59eef60b 100644 --- a/files/en-us/web/http/conditional_requests/index.md +++ b/files/en-us/web/http/conditional_requests/index.md @@ -46,9 +46,9 @@ Weak validation differs from strong validation, as it considers two versions of Several HTTP headers, called conditional headers, lead to conditional requests. These are: - {{HTTPHeader("If-Match")}} - - : Succeeds if the {{HTTPHeader("ETag")}} of the distant resource is equal to one listed in this header. By default, unless the etag is prefixed with `'W/'`, it performs a strong validation. + - : Succeeds if the {{HTTPHeader("ETag")}} of the distant resource is equal to one listed in this header. It performs a strong validation. - {{HTTPHeader("If-None-Match")}} - - : Succeeds if the {{HTTPHeader("ETag")}} of the distant resource is different to each listed in this header. By default, unless the etag is prefixed with `'W/'`, it performs a strong validation. + - : Succeeds if the {{HTTPHeader("ETag")}} of the distant resource is different to each listed in this header. It performs a weak validation. - {{HTTPHeader("If-Modified-Since")}} - : Succeeds if the {{HTTPHeader("Last-Modified")}} date of the distant resource is more recent than the one given in this header. - {{HTTPHeader("If-Unmodified-Since")}}