diff --git a/src/docbook/en-US/module/architecture.xml b/src/docbook/en-US/module/architecture.xml index 44cbd0066b..dc12117f80 100644 --- a/src/docbook/en-US/module/architecture.xml +++ b/src/docbook/en-US/module/architecture.xml @@ -41,20 +41,20 @@ Rich Buffer Data Structure Netty uses its own buffer API instead of NIO ByteBuffer - to represent a sequence of bytes. This approach has significant advantage + to represent a sequence of bytes. This approach has significant advantages over using ByteBuffer. Netty's new buffer type, - &ChannelBuffer; has been designed from ground up to address the problems + &ChannelBuffer; has been designed from the ground up to address the problems of ByteBuffer and to meet the daily needs of network application developers. To list a few cool features: - You can define your buffer type if necessary. + You can define your own buffer type if necessary. - Transparent zero copy is achieved by built-in composite buffer type. + Transparent zero copy is achieved by a built-in composite buffer type.