git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@219116 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2005-07-14 21:54:47 +00:00
parent afcdb367ad
commit 5b5d6b23d1
1 changed files with 2 additions and 2 deletions

View File

@ -673,7 +673,7 @@ public class StrBuilder implements Cloneable {
/** /**
* Appends an object to the builder padding on the left to a fixed width. * Appends an object to the builder padding on the left to a fixed width.
* The <code>String.valueOf</code> of the object is used. * The <code>String.valueOf</code> of the <code>int</code> value is used.
* If the formatted value is larger than the length, the left hand side is lost. * If the formatted value is larger than the length, the left hand side is lost.
* *
* @param value the value to append * @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. * Appends an object to the builder padding on the right to a fixed length.
* The <code>String.valueOf</code> of the object is used. * The <code>String.valueOf</code> of the <code>int</code> value is used.
* If the object is larger than the length, the right hand side is lost. * If the object is larger than the length, the right hand side is lost.
* *
* @param value the value to append * @param value the value to append