diff --git a/jdk/src/java.base/share/classes/java/nio/channels/Channels.java b/jdk/src/java.base/share/classes/java/nio/channels/Channels.java index 1325374755f..20a8cdd476d 100644 --- a/jdk/src/java.base/share/classes/java/nio/channels/Channels.java +++ b/jdk/src/java.base/share/classes/java/nio/channels/Channels.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -579,12 +579,13 @@ public final class Channels { * charset and writes the resulting bytes to the given channel. * *

An invocation of this method of the form - *

+ * *

 {@code
      *     Channels.newWriter(ch, csname)
      * } 
+ * * behaves in exactly the same way as the expression - *

+ * *

 {@code
      *     Channels.newWriter(ch, Charset.forName(csName).newEncoder(), -1)
      * }