@@ -85,44 +85,44 @@ public Base32OutputStream(final OutputStream out, final boolean doEncode) {
8585 * Creates a Base32OutputStream such that all data written is either Base32-encoded or Base32-decoded to the
8686 * original provided OutputStream.
8787 *
88- * @param ouput
88+ * @param output
8989 * OutputStream to wrap.
9090 * @param doEncode
9191 * true if we should encode all data written to us, false if we should decode.
9292 * @param lineLength
9393 * If doEncode is true, each line of encoded data will contain lineLength characters (rounded down to
94- * nearest multiple of 4). If lineLength <= 0, the encoded data is not divided into lines. If doEncode
95- * is false, lineLength is ignored.
94+ * the nearest multiple of 4). If lineLength <= 0, the encoded data is not divided into lines. If
95+ * doEncode is false, lineLength is ignored.
9696 * @param lineSeparator
9797 * If doEncode is true, each line of encoded data will be terminated with this byte sequence (e.g. \r\n).
9898 * If lineLength <= 0, the lineSeparator is not used. If doEncode is false lineSeparator is ignored.
9999 */
100- public Base32OutputStream (final OutputStream ouput , final boolean doEncode ,
100+ public Base32OutputStream (final OutputStream output , final boolean doEncode ,
101101 final int lineLength , final byte [] lineSeparator ) {
102- super (ouput , new Base32 (lineLength , lineSeparator ), doEncode );
102+ super (output , new Base32 (lineLength , lineSeparator ), doEncode );
103103 }
104104
105105 /**
106106 * Creates a Base32OutputStream such that all data written is either Base32-encoded or Base32-decoded to the
107107 * original provided OutputStream.
108108 *
109- * @param ouput
109+ * @param output
110110 * OutputStream to wrap.
111111 * @param doEncode
112112 * true if we should encode all data written to us, false if we should decode.
113113 * @param lineLength
114114 * If doEncode is true, each line of encoded data will contain lineLength characters (rounded down to
115- * nearest multiple of 4). If lineLength <= 0, the encoded data is not divided into lines. If doEncode
116- * is false, lineLength is ignored.
115+ * the nearest multiple of 4). If lineLength <= 0, the encoded data is not divided into lines. If
116+ * doEncode is false, lineLength is ignored.
117117 * @param lineSeparator
118118 * If doEncode is true, each line of encoded data will be terminated with this byte sequence (e.g. \r\n).
119119 * If lineLength <= 0, the lineSeparator is not used. If doEncode is false lineSeparator is ignored.
120120 * @param decodingPolicy The decoding policy.
121121 * @since 1.15
122122 */
123- public Base32OutputStream (final OutputStream ouput , final boolean doEncode ,
123+ public Base32OutputStream (final OutputStream output , final boolean doEncode ,
124124 final int lineLength , final byte [] lineSeparator , final CodecPolicy decodingPolicy ) {
125- super (ouput , new Base32 (lineLength , lineSeparator , false , BaseNCodec .PAD_DEFAULT , decodingPolicy ), doEncode );
125+ super (output , new Base32 (lineLength , lineSeparator , false , BaseNCodec .PAD_DEFAULT , decodingPolicy ), doEncode );
126126 }
127127
128128}
0 commit comments