Index: src/docbkx/nio-ext.xml =================================================================== --- src/docbkx/nio-ext.xml (revision 1065928) +++ src/docbkx/nio-ext.xml (working copy) @@ -1328,7 +1328,7 @@ public ConsumingNHttpEntity entityRequest( HttpEntityEnclosingRequest request, HttpContext context) throws HttpException, IOException { - // Buffer imcoming content in memory for simplicity + // Buffer incoming content in memory for simplicity return new BufferingNHttpEntity(request.getEntity(), new HeapByteBufferAllocator()); } @@ -1371,7 +1371,7 @@ public ConsumingNHttpEntity entityRequest( HttpEntityEnclosingRequest request, HttpContext context) throws HttpException, IOException { - // Buffer imcoming content in memory for simplicity + // Buffer incoming content in memory for simplicity return new BufferingNHttpEntity(request.getEntity(), new HeapByteBufferAllocator()); } @@ -1603,7 +1603,7 @@ public ConsumingNHttpEntity responseEntity( HttpResponse response, HttpContext context) throws IOException { - // Buffer imcoming content in memory for simplicity + // Buffer incoming content in memory for simplicity return new BufferingNHttpEntity(response.getEntity(), new HeapByteBufferAllocator()); }