Browse Source

Fix status code in webmvc.adoc

Closes gh-22396
pull/23965/head
Muhammad Hewedy 7 years ago committed by Rossen Stoyanchev
parent
commit
f638bfc6a9
  1. 2
      src/docs/asciidoc/web/webmvc.adoc

2
src/docs/asciidoc/web/webmvc.adoc

@ -4818,7 +4818,7 @@ as the following example shows: @@ -4818,7 +4818,7 @@ as the following example shows:
There are three variants for checking conditional requests against `eTag` values, `lastModified`
values, or both. For conditional `GET` and `HEAD` requests, you can set the response to
304 (NOT_MODIFIED). For conditional `POST`, `PUT`, and `DELETE`, you can instead set the response
to 409 (PRECONDITION_FAILED), to prevent concurrent modification.
to 412 (PRECONDITION_FAILED), to prevent concurrent modification.

Loading…
Cancel
Save