diff --git a/src/main/java/com/github/alexisjehan/javanilla/lang/Strings.java b/src/main/java/com/github/alexisjehan/javanilla/lang/Strings.java index 3ab3d5d0..a9e13e53 100644 --- a/src/main/java/com/github/alexisjehan/javanilla/lang/Strings.java +++ b/src/main/java/com/github/alexisjehan/javanilla/lang/Strings.java @@ -1743,9 +1743,9 @@ public static boolean isBase64(final CharSequence charSequence, final boolean wi } /** - *
Tell if a {@link CharSequence} is a base 64 representation for URLs and filenames.
+ *Tell if a {@link CharSequence} is a base 64 representation for URLs and file names.
* @param charSequence the {@link CharSequence} to test - * @return {@code true} if the {@link CharSequence} is a base 64 representation for URLs and filenames + * @return {@code true} if the {@link CharSequence} is a base 64 representation for URLs and file names * @throws NullPointerException if the {@link CharSequence} is {@code null} * @since 1.7.0 */ @@ -1754,10 +1754,10 @@ public static boolean isBase64Url(final CharSequence charSequence) { } /** - *Tell if a {@link CharSequence} is a base 64 representation for URLs and filenames with padding or not.
+ *Tell if a {@link CharSequence} is a base 64 representation for URLs and file names with padding or not.
* @param charSequence the {@link CharSequence} to test - * @param withPadding {@code true} if the base 64 representation for URLs and filenames must have padding - * @return {@code true} if the {@link CharSequence} is a base 64 representation for URLs and filenames + * @param withPadding {@code true} if the base 64 representation for URLs and file names must have padding + * @return {@code true} if the {@link CharSequence} is a base 64 representation for URLs and file names * @throws NullPointerException if the {@link CharSequence} is {@code null} * @since 1.0.0 */