Skip to content

Commit d720d6b

Browse files
committed
Merge branch '6.0.x'
2 parents cb0c5f5 + 75b540f commit d720d6b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spring-web/src/main/java/org/springframework/http/client/MultipartBodyBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
*
7777
* Mono<Void> result = webClient.post()
7878
* .uri("...")
79-
* .body(multipartBody)
79+
* .bodyValue(multipartBody)
8080
* .retrieve()
8181
* .bodyToMono(Void.class)
8282
* </pre>

spring-web/src/main/java/org/springframework/web/filter/ShallowEtagHeaderFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-web/src/main/java/org/springframework/web/util/UriUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -307,7 +307,7 @@ public static String encode(String source, String encoding) {
307307
* meaning, anywhere within a URI, as defined in
308308
* <a href="https://tools.ietf.org/html/rfc3986">RFC 3986</a>.
309309
* This is useful to ensure that the given String will be preserved as-is
310-
* and will not have any o impact on the structure or meaning of the URI.
310+
* and will not have any impact on the structure or meaning of the URI.
311311
* @param source the String to be encoded
312312
* @param charset the character encoding to encode to
313313
* @return the encoded String

0 commit comments

Comments
 (0)