diff --git a/src/main/java/org/jboss/netty/buffer/ChannelBuffer.java b/src/main/java/org/jboss/netty/buffer/ChannelBuffer.java index 362d74a7c1..2bc49bf549 100644 --- a/src/main/java/org/jboss/netty/buffer/ChannelBuffer.java +++ b/src/main/java/org/jboss/netty/buffer/ChannelBuffer.java @@ -69,7 +69,7 @@ import java.util.NoSuchElementException; * *
* +-------------------+------------------+------------------+ - * | discardable bytes | readable bytes | writable space | + * | discardable bytes | readable bytes | writable bytes | * | | (CONTENT) | | * +-------------------+------------------+------------------+ * | | | | @@ -98,7 +98,7 @@ import java.util.NoSuchElementException; * } ** - *
- * If there's not enough writable space left, {@link IndexOutOfBoundsException} + * If there's not enough writable bytes left, {@link IndexOutOfBoundsException} * is raised. The default value of newly allocated buffer's * {@link #writerIndex() writerIndex} is {@code 0}. The default value of * wrapped or copied buffer's {@link #writerIndex() writerIndex} is the * {@link #capacity() capacity} of the buffer. * *
- * // Fills the writable space of a buffer with random integers. + * // Fills the writable bytes of a buffer with random integers. * ChannelBuffer buffer = ...; * while (buffer.writableBytes() >= 4) { * buffer.writeInt(random.nextInt()); @@ -133,7 +133,7 @@ import java.util.NoSuchElementException; * BEFORE discardReadBytes() * * +-------------------+------------------+------------------+ - * | discardable bytes | readable bytes | writable space | + * | discardable bytes | readable bytes | writable bytes | * | | (CONTENT) | | * +-------------------+------------------+------------------+ * | | | | @@ -143,7 +143,7 @@ import java.util.NoSuchElementException; * AFTER discardReadBytes() * * +------------------+--------------------------------------+ - * | readable bytes | writable space (got more space) | + * | readable bytes | writable bytes (got more space) | * | (CONTENT) | | * +------------------+--------------------------------------+ * | | | @@ -162,7 +162,7 @@ import java.util.NoSuchElementException; * BEFORE clear() * * +-------------------+------------------+------------------+ - * | discardable bytes | readable bytes | writable space | + * | discardable bytes | readable bytes | writable bytes | * | | (CONTENT) | | * +-------------------+------------------+------------------+ * | | | | @@ -172,7 +172,7 @@ import java.util.NoSuchElementException; * AFTER clear() * * +---------------------------------------------------------+ - * | writable space (got more space) | + * | writable bytes (got more space) | * +---------------------------------------------------------+ * | | * 0 = readerIndex = writerIndex <= capacity