src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java
branchhttp-client-branch
changeset 56071 3353cb42b1b4
parent 56038 e663f24e3020
child 56075 c76699d2e572
--- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java	Mon Feb 05 15:51:09 2018 +0000
+++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java	Mon Feb 05 17:18:26 2018 +0000
@@ -863,12 +863,12 @@
      *
      * <p> The object acts as a {@link Flow.Subscriber}&lt;{@link List}&lt;{@link
      * ByteBuffer}&gt;&gt; to the HTTP client implementation, which publishes
-     * unmodifiable lists of ByteBuffers containing the response body. The Flow
-     * of data, as well as the order of ByteBuffers in the Flow lists, is a
-     * strictly ordered representation of the response body. Both the Lists and
-     * the ByteBuffers, once passed to the subscriber, are no longer used by the
-     * HTTP client. The subscriber converts the incoming buffers of data to some
-     * user-defined object type {@code T}.
+     * unmodifiable lists of read-only ByteBuffers containing the response body.
+     * The Flow of data, as well as the order of ByteBuffers in the Flow lists,
+     * is a strictly ordered representation of the response body. Both the Lists
+     * and the ByteBuffers, once passed to the subscriber, are no longer used by
+     * the HTTP client. The subscriber converts the incoming buffers of data to
+     * some user-defined object type {@code T}.
      *
      * <p> The {@link #getBody()} method returns a {@link CompletionStage}{@code
      * <T>} that provides the response body object. The {@code CompletionStage}