Fix typo in comment.

This commit is contained in:
回眸,境界 2017-10-01 20:24:06 +08:00 committed by Norman Maurer
parent 78786e6052
commit 06da0ceb64

View File

@ -246,7 +246,7 @@ final class FixedCompositeByteBuf extends AbstractReferenceCountedByteBuf {
readable += b.readableBytes();
if (index < readable) {
if (isBuffer) {
// Create a new component ad store ti in the array so it not create a new object
// Create a new component and store it in the array so it not create a new object
// on the next access.
comp = new Component(i, readable - b.readableBytes(), b);
buffers[i] = comp;