This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit f878fba9cff86126eff1c38d1e10901e84bb353a Author: Gary Gregory <[email protected]> AuthorDate: Mon Nov 4 15:25:01 2024 -0500 Normalize Javadoc first sentence in LocaleUtils --- src/main/java/org/apache/commons/lang3/LocaleUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/LocaleUtils.java b/src/main/java/org/apache/commons/lang3/LocaleUtils.java index f057c7625..c53a899f7 100644 --- a/src/main/java/org/apache/commons/lang3/LocaleUtils.java +++ b/src/main/java/org/apache/commons/lang3/LocaleUtils.java @@ -136,7 +136,7 @@ public class LocaleUtils { } /** - * Checks whether the given String is a ISO 3166 alpha-2 country code. + * Tests whether the given String is a ISO 3166 alpha-2 country code. * * @param str the String to check * @return true, is the given String is a ISO 3166 compliant country code. @@ -146,7 +146,7 @@ public class LocaleUtils { } /** - * Checks whether the given String is a ISO 639 compliant language code. + * Tests whether the given String is a ISO 639 compliant language code. * * @param str the String to check. * @return true, if the given String is a ISO 639 compliant language code. @@ -172,7 +172,7 @@ public class LocaleUtils { } /** - * Checks whether the given String is a UN M.49 numeric area code. + * TestsNo whether the given String is a UN M.49 numeric area code. * * @param str the String to check * @return true, is the given String is a UN M.49 numeric area code.
