Skip to content

Commit 5b1eb03

Browse files
nitzanjAmir Tocker
authored andcommitted
Fix bad token in javadoc.
1 parent 93107e5 commit 5b1eb03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudinary-core/src/main/java/com/cloudinary/utils/StringUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public static String urlEncode(String url, Pattern unsafe, Charset charset) {
244244
}
245245

246246
/**
247-
* Merge all consecutive underscores and spaces into a single underscore, e.g. "ab___c_ _d" -> "ab_c_d"
247+
* Merge all consecutive underscores and spaces into a single underscore, e.g. "ab___c_ _d" becomes "ab_c_d"
248248
*
249249
* @param s String to process
250250
* @return The resulting string.
@@ -363,7 +363,7 @@ public static boolean hasVersionString(String url) {
363363
}
364364

365365
/**
366-
* Merges all occurrences of multiple slashes into a single slash (e.g. "a///b//c/d" -> "a/b/c/d")
366+
* Merges all occurrences of multiple slashes into a single slash (e.g. "a///b//c/d" becomes "a/b/c/d")
367367
* @param url The string to process
368368
* @return The resulting string with merged slashes.
369369
*/

0 commit comments

Comments
 (0)