Fix typo in comment.

This commit is contained in:
回眸,境界 2017-10-01 20:24:06 +08:00 committed by Norman Maurer
parent 272f26f68c
commit 9aa70fc70b

View File

@ -220,7 +220,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;