From 14ce84cebbc8d64a5047e4287166d03ce101de8f Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 5 Dec 2019 13:00:44 +0900 Subject: [PATCH] Fix status code in webflux.adoc --- src/docs/asciidoc/web/webflux.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index 4c501f1d71f7..b6e03ff12844 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -3612,7 +3612,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.