@@ -154,7 +154,7 @@ public class Base32 extends BaseNCodec {
154154 private final byte [] lineSeparator ;
155155
156156 /**
157- * Creates a Base32 codec used for decoding and encoding.
157+ * Constructs a Base32 codec used for decoding and encoding.
158158 * <p>
159159 * When encoding the line length is 0 (no chunking).
160160 * </p>
@@ -164,7 +164,7 @@ public Base32() {
164164 }
165165
166166 /**
167- * Creates a Base32 codec used for decoding and encoding.
167+ * Constructs a Base32 codec used for decoding and encoding.
168168 * <p>
169169 * When encoding the line length is 0 (no chunking).
170170 * </p>
@@ -176,7 +176,7 @@ public Base32(final boolean useHex) {
176176 }
177177
178178 /**
179- * Creates a Base32 codec used for decoding and encoding.
179+ * Constructs a Base32 codec used for decoding and encoding.
180180 * <p>
181181 * When encoding the line length is 0 (no chunking).
182182 * </p>
@@ -189,7 +189,7 @@ public Base32(final boolean useHex, final byte padding) {
189189 }
190190
191191 /**
192- * Creates a Base32 codec used for decoding and encoding.
192+ * Constructs a Base32 codec used for decoding and encoding.
193193 * <p>
194194 * When encoding the line length is 0 (no chunking).
195195 * </p>
@@ -201,7 +201,7 @@ public Base32(final byte pad) {
201201 }
202202
203203 /**
204- * Creates a Base32 codec used for decoding and encoding.
204+ * Constructs a Base32 codec used for decoding and encoding.
205205 * <p>
206206 * When encoding the line length is given in the constructor, the line separator is CRLF.
207207 * </p>
@@ -214,7 +214,7 @@ public Base32(final int lineLength) {
214214 }
215215
216216 /**
217- * Creates a Base32 codec used for decoding and encoding.
217+ * Constructs a Base32 codec used for decoding and encoding.
218218 * <p>
219219 * When encoding the line length and line separator are given in the constructor.
220220 * </p>
@@ -232,7 +232,7 @@ public Base32(final int lineLength, final byte[] lineSeparator) {
232232 }
233233
234234 /**
235- * Creates a Base32 / Base32 Hex codec used for decoding and encoding.
235+ * Constructs a Base32 / Base32 Hex codec used for decoding and encoding.
236236 * <p>
237237 * When encoding the line length and line separator are given in the constructor.
238238 * </p>
@@ -251,7 +251,7 @@ public Base32(final int lineLength, final byte[] lineSeparator, final boolean us
251251 }
252252
253253 /**
254- * Creates a Base32 / Base32 Hex codec used for decoding and encoding.
254+ * Constructs a Base32 / Base32 Hex codec used for decoding and encoding.
255255 * <p>
256256 * When encoding the line length and line separator are given in the constructor.
257257 * </p>
@@ -271,7 +271,7 @@ public Base32(final int lineLength, final byte[] lineSeparator, final boolean us
271271 }
272272
273273 /**
274- * Creates a Base32 / Base32 Hex codec used for decoding and encoding.
274+ * Constructs a Base32 / Base32 Hex codec used for decoding and encoding.
275275 * <p>
276276 * When encoding the line length and line separator are given in the constructor.
277277 * </p>
0 commit comments