Skip to content

Commit c905060

Browse files
committed
Fix StringUtils#uriDecode Javadoc
Closes gh-34590
1 parent 5e82ee6 commit c905060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/util/StringUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ public static boolean pathEquals(String path1, String path2) {
808808
* <li>Alphanumeric characters {@code "a"} through {@code "z"}, {@code "A"} through {@code "Z"},
809809
* and {@code "0"} through {@code "9"} stay the same.</li>
810810
* <li>Special characters {@code "-"}, {@code "_"}, {@code "."}, and {@code "*"} stay the same.</li>
811-
* <li>A sequence "{@code %<i>xy</i>}" is interpreted as a hexadecimal representation of the character.</li>
811+
* <li>A sequence "<i>{@code %xy}</i>" is interpreted as a hexadecimal representation of the character.</li>
812812
* <li>For all other characters (including those already decoded), the output is undefined.</li>
813813
* </ul>
814814
* @param source the encoded String

0 commit comments

Comments
 (0)