diff --git a/src/java/org/apache/commons/lang/text/StrBuilder.java b/src/java/org/apache/commons/lang/text/StrBuilder.java index 6b7dbf632..488e42cac 100644 --- a/src/java/org/apache/commons/lang/text/StrBuilder.java +++ b/src/java/org/apache/commons/lang/text/StrBuilder.java @@ -673,7 +673,7 @@ public class StrBuilder implements Cloneable { /** * Appends an object to the builder padding on the left to a fixed width. - * The String.valueOf of the object is used. + * The String.valueOf of the int value is used. * If the formatted value is larger than the length, the left hand side is lost. * * @param value the value to append @@ -717,7 +717,7 @@ public class StrBuilder implements Cloneable { /** * Appends an object to the builder padding on the right to a fixed length. - * The String.valueOf of the object is used. + * The String.valueOf of the int value is used. * If the object is larger than the length, the right hand side is lost. * * @param value the value to append