From 052ed50f480d290d1d4e4d3721a1425fa33e0e62 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 17 Oct 2021 19:32:53 +0200 Subject: [PATCH] Fix copy-and-paste error in Javadoc --- .../web/reactive/function/client/ClientRequest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/ClientRequest.java b/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/ClientRequest.java index 2b61dba1836..5c24b2ab30d 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/ClientRequest.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/function/client/ClientRequest.java @@ -209,8 +209,8 @@ public interface ClientRequest { /** * Manipulate this request's cookies with the given consumer. The * map provided to the consumer is "live", so that the consumer can be used to - * {@linkplain MultiValueMap#set(Object, Object) overwrite} existing header values, - * {@linkplain MultiValueMap#remove(Object) remove} values, or use any of the other + * {@linkplain MultiValueMap#set(Object, Object) overwrite} existing cookie values, + * {@linkplain MultiValueMap#remove(Object) remove} cookies, or use any of the other * {@link MultiValueMap} methods. * @param cookiesConsumer a function that consumes the cookies map * @return this builder