This is an automated email from the ASF dual-hosted git repository. kinow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new ef07c645e fix StringUtils.upperCase(String str) java doc ef07c645e is described below commit ef07c645efe7a490f21ae80473814d6117832ded Author: Nikhil Kumar <kumar.nikhil1...@gmail.com> AuthorDate: Sun Jun 12 07:35:10 2022 +0530 fix StringUtils.upperCase(String str) java doc --- src/main/java/org/apache/commons/lang3/StringUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index 5d40563bf..62b00f906 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -9446,7 +9446,7 @@ public class StringUtils { * * <p><strong>Note:</strong> As described in the documentation for {@link String#toUpperCase()}, * the result of this method is affected by the current locale. - * For platform-independent case transformations, the method {@link #lowerCase(String, Locale)} + * For platform-independent case transformations, the method {@link #upperCase(String, Locale)} * should be used with a specific locale (e.g. {@link Locale#ENGLISH}).</p> * * @param str the String to upper case, may be null