Skip to content

Commit

Permalink
Minor typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisJehan committed Nov 30, 2023
1 parent dad64b2 commit a2e0bd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/com/github/alexisjehan/javanilla/lang/Strings.java
Original file line number Diff line number Diff line change
Expand Up @@ -1743,9 +1743,9 @@ public static boolean isBase64(final CharSequence charSequence, final boolean wi
}

/**
* <p>Tell if a {@link CharSequence} is a base 64 representation for URLs and filenames.</p>
* <p>Tell if a {@link CharSequence} is a base 64 representation for URLs and file names.</p>
* @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
*/
Expand All @@ -1754,10 +1754,10 @@ public static boolean isBase64Url(final CharSequence charSequence) {
}

/**
* <p>Tell if a {@link CharSequence} is a base 64 representation for URLs and filenames with padding or not.</p>
* <p>Tell if a {@link CharSequence} is a base 64 representation for URLs and file names with padding or not.</p>
* @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
*/
Expand Down

0 comments on commit a2e0bd1

Please sign in to comment.