Skip to content

Commit

Permalink
Update description of conditional headers (#27645)
Browse files Browse the repository at this point in the history
  • Loading branch information
takaram committed Jul 19, 2023
1 parent d0ba214 commit fc57787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/en-us/web/http/conditional_requests/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")}}
Expand Down

0 comments on commit fc57787

Please sign in to comment.