4545 * of the {@link WriterOutputStream}.
4646 * <p>
4747 * {@link WriterOutputStream} implements the inverse transformation of {@link java.io.OutputStreamWriter};
48- * in the following example, writing to <tt> out2</tt> would have the same result as writing to
49- * <tt> out</tt> directly (provided that the byte sequence is legal with respect to the
48+ * in the following example, writing to {@code out2} would have the same result as writing to
49+ * {@code out} directly (provided that the byte sequence is legal with respect to the
5050 * charset encoding):
5151 * <pre>
5252 * OutputStream out = ...
@@ -110,9 +110,9 @@ public WriterOutputStream(final Writer writer, final CharsetDecoder decoder) {
110110 * @param writer the target {@link Writer}
111111 * @param decoder the charset decoder
112112 * @param bufferSize the size of the output buffer in number of characters
113- * @param writeImmediately If <tt> true</tt> the output buffer will be flushed after each
113+ * @param writeImmediately If {@code true} the output buffer will be flushed after each
114114 * write operation, i.e. all available data will be written to the
115- * underlying {@link Writer} immediately. If <tt> false</tt> , the
115+ * underlying {@link Writer} immediately. If {@code false} , the
116116 * output buffer will only be flushed when it overflows or when
117117 * {@link #flush()} or {@link #close()} is called.
118118 * @since 2.1
@@ -130,9 +130,9 @@ public WriterOutputStream(final Writer writer, final CharsetDecoder decoder, fin
130130 * @param writer the target {@link Writer}
131131 * @param charset the charset encoding
132132 * @param bufferSize the size of the output buffer in number of characters
133- * @param writeImmediately If <tt> true</tt> the output buffer will be flushed after each
133+ * @param writeImmediately If {@code true} the output buffer will be flushed after each
134134 * write operation, i.e. all available data will be written to the
135- * underlying {@link Writer} immediately. If <tt> false</tt> , the
135+ * underlying {@link Writer} immediately. If {@code false} , the
136136 * output buffer will only be flushed when it overflows or when
137137 * {@link #flush()} or {@link #close()} is called.
138138 */
@@ -164,9 +164,9 @@ public WriterOutputStream(final Writer writer, final Charset charset) {
164164 * @param writer the target {@link Writer}
165165 * @param charsetName the name of the charset encoding
166166 * @param bufferSize the size of the output buffer in number of characters
167- * @param writeImmediately If <tt> true</tt> the output buffer will be flushed after each
167+ * @param writeImmediately If {@code true} the output buffer will be flushed after each
168168 * write operation, i.e. all available data will be written to the
169- * underlying {@link Writer} immediately. If <tt> false</tt> , the
169+ * underlying {@link Writer} immediately. If {@code false} , the
170170 * output buffer will only be flushed when it overflows or when
171171 * {@link #flush()} or {@link #close()} is called.
172172 */
0 commit comments