Skip to content

Commit f7b088e

Browse files
committed
Fix typo.
Signed-off-by: Olga Maciaszek-Sharma <[email protected]>
1 parent 76cbd13 commit f7b088e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-cloud-commons/src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerUriTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private static boolean containsEncodedParts(URI uri) {
5656
boolean encoded = (uri.getRawQuery() != null && uri.getRawQuery().contains(PERCENTAGE_SIGN))
5757
|| (uri.getRawPath() != null && uri.getRawPath().contains(PERCENTAGE_SIGN))
5858
|| (uri.getRawFragment() != null && uri.getRawFragment().contains(PERCENTAGE_SIGN));
59-
// Verify if it is real ly fully encoded. Treat partial encoded as unencoded.
59+
// Verify if it is really fully encoded. Treat partial encoded as unencoded.
6060
if (encoded) {
6161
try {
6262
UriComponentsBuilder.fromUri(uri).build(true);

0 commit comments

Comments
 (0)