Remove 'the' duplicates

This commit is contained in:
Nafer Sanabria 2016-03-31 16:20:15 -05:00
parent bc660a7403
commit b6b017902f
4 changed files with 4 additions and 4 deletions

View file

@ -181,7 +181,7 @@ class RopeByteString extends ByteString {
&& leftRope.getTreeDepth() > right.getTreeDepth()) {
// Typically for concatenate-built strings the left-side is deeper than
// the right. This is our final attempt to concatenate without
// increasing the tree depth. We'll redo the the node on the RHS. This
// increasing the tree depth. We'll redo the node on the RHS. This
// is yet another optimization for building the string by repeatedly
// concatenating on the right.
ByteString newRight = new RopeByteString(leftRope.right, right);