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
The following commit(s) were added to refs/heads/master by this push: new 5019cdbdb Javadoc 5019cdbdb is described below commit 5019cdbdb800eeef2b9fa35e38d968010767b2f5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Oct 19 07:35:55 2023 -0400 Javadoc --- src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java b/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java index 9ce332e9d..5e8e06fce 100644 --- a/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java +++ b/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java @@ -1550,7 +1550,7 @@ public abstract class ToStringStyle implements Serializable { /** * Gets the short class name for a class. * - * <p>The short class name is the classname excluding + * <p>The short class name is the class name excluding * the package name.</p> * * @param cls the {@link Class} to get the short name of @@ -2129,7 +2129,7 @@ public abstract class ToStringStyle implements Serializable { /** * {@link ToStringStyle} that does not print out the - * classname, identity hash code, content start or field name. + * class name, identity hash code, content start or field name. * * <p>This is an inner class rather than using * {@link StandardToStringStyle} to ensure its immutability.</p> @@ -2195,7 +2195,7 @@ public abstract class ToStringStyle implements Serializable { } /** - * {@link ToStringStyle} that does not print out the classname + * {@link ToStringStyle} that does not print out the class name * and identity hash code but prints content start and field names. * * <p>This is an inner class rather than using