@@ -13,7 +13,7 @@ The `One` searcher also provides a [`One::count`] routine for efficiently
1313counting the number of times a single byte occurs in a haystack. This is
1414useful, for example, for counting the number of lines in a haystack. This
1515routine exists because it is usually faster, especially with a high match
16- count, then using [`One::find`] repeatedly. ([`OneIter`] specializes its
16+ count, than using [`One::find`] repeatedly. ([`OneIter`] specializes its
1717`Iterator::count` implementation to use this routine.)
1818
1919Only one, two and three bytes are supported because three bytes is about
@@ -456,7 +456,7 @@ impl Two {
456456 }
457457
458458 // And now we start our search at a guaranteed aligned position.
459- // The first iteration of the loop below will overlap with the the
459+ // The first iteration of the loop below will overlap with the
460460 // unaligned chunk above in cases where the search starts at an
461461 // unaligned offset, but that's okay as we're only here if that
462462 // above didn't find a match.
@@ -720,7 +720,7 @@ impl Three {
720720 }
721721
722722 // And now we start our search at a guaranteed aligned position.
723- // The first iteration of the loop below will overlap with the the
723+ // The first iteration of the loop below will overlap with the
724724 // unaligned chunk above in cases where the search starts at an
725725 // unaligned offset, but that's okay as we're only here if that
726726 // above didn't find a match.
0 commit comments