@@ -37,14 +37,14 @@ public class StringBuilderWriter extends Writer implements Serializable {
3737 private final StringBuilder builder ;
3838
3939 /**
40- * Construct a new {@link StringBuilder} instance with default capacity.
40+ * Constructs a new {@link StringBuilder} instance with default capacity.
4141 */
4242 public StringBuilderWriter () {
4343 this .builder = new StringBuilder ();
4444 }
4545
4646 /**
47- * Construct a new {@link StringBuilder} instance with the specified capacity.
47+ * Constructs a new {@link StringBuilder} instance with the specified capacity.
4848 *
4949 * @param capacity The initial capacity of the underlying {@link StringBuilder}
5050 */
@@ -53,7 +53,7 @@ public StringBuilderWriter(final int capacity) {
5353 }
5454
5555 /**
56- * Construct a new instance with the specified {@link StringBuilder}.
56+ * Constructs a new instance with the specified {@link StringBuilder}.
5757 *
5858 * <p>If {@code builder} is null a new instance with default capacity will be created.</p>
5959 *
@@ -64,7 +64,7 @@ public StringBuilderWriter(final StringBuilder builder) {
6464 }
6565
6666 /**
67- * Append a single character to this Writer.
67+ * Appends a single character to this Writer.
6868 *
6969 * @param value The character to append
7070 * @return This writer instance
@@ -76,7 +76,7 @@ public Writer append(final char value) {
7676 }
7777
7878 /**
79- * Append a character sequence to this Writer.
79+ * Appends a character sequence to this Writer.
8080 *
8181 * @param value The character to append
8282 * @return This writer instance
@@ -88,7 +88,7 @@ public Writer append(final CharSequence value) {
8888 }
8989
9090 /**
91- * Append a portion of a character sequence to the {@link StringBuilder}.
91+ * Appends a portion of a character sequence to the {@link StringBuilder}.
9292 *
9393 * @param value The character to append
9494 * @param start The index of the first character
@@ -119,7 +119,7 @@ public void flush() {
119119
120120
121121 /**
122- * Write a String to the {@link StringBuilder}.
122+ * Writes a String to the {@link StringBuilder}.
123123 *
124124 * @param value The value to write
125125 */
@@ -131,7 +131,7 @@ public void write(final String value) {
131131 }
132132
133133 /**
134- * Write a portion of a character array to the {@link StringBuilder}.
134+ * Writes a portion of a character array to the {@link StringBuilder}.
135135 *
136136 * @param value The value to write
137137 * @param offset The index of the first character
@@ -145,7 +145,7 @@ public void write(final char[] value, final int offset, final int length) {
145145 }
146146
147147 /**
148- * Return the underlying builder.
148+ * Returns the underlying builder.
149149 *
150150 * @return The underlying builder
151151 */
0 commit comments