< prev index next >

src/java.base/share/classes/sun/misc/CharacterEncoder.java

Print this page

        

@@ -66,11 +66,11 @@
  *
  * Several useful encoders have already been written and are
  * referenced in the See Also list below.
  *
  * @author      Chuck McManis
- * @see         CharacterDecoder;
+ * @see         CharacterDecoder
  * @see         UCEncoder
  * @see         UUEncoder
  * @see         BASE64Encoder
  */
 public abstract class CharacterEncoder {

@@ -105,11 +105,11 @@
     throws IOException {
     }
 
     /**
      * Encode the suffix that ends every output line. By default
-     * this method just prints a <newline> into the output stream.
+     * this method just prints a newline into the output stream.
      */
     protected void encodeLineSuffix(OutputStream aStream) throws IOException {
         pStream.println();
     }
 
< prev index next >