Skip to content

Commit

Permalink
Remove 'the' duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
naferx committed Mar 31, 2016
1 parent bc660a7 commit b6b0179
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -66,7 +66,7 @@ public abstract class DateTime {
public abstract String weekdayStr(); public abstract String weekdayStr();


/** /**
* Returns the the month as a 3 letter abbreviation: * Returns the month as a 3 letter abbreviation:
* `Jan`, `Feb`, `Mar`, `Apr`, `May`, `Jun`, `Jul`, `Aug`, `Sep`, `Oct`, `Nov` or `Dec` * `Jan`, `Feb`, `Mar`, `Apr`, `May`, `Jun`, `Jul`, `Aug`, `Sep`, `Oct`, `Nov` or `Dec`
*/ */
public abstract String monthStr(); public abstract String monthStr();
Expand Down
Expand Up @@ -57,7 +57,7 @@ public abstract class Uri {
public abstract String path(); public abstract String path();


/** /**
* Returns the the path segments of this Uri as an Iterable. * Returns the path segments of this Uri as an Iterable.
*/ */
public abstract Iterable<String> pathSegments(); public abstract Iterable<String> pathSegments();


Expand Down
Expand Up @@ -113,7 +113,7 @@ class HttpModelIntegrationSpec extends WordSpec with Matchers with BeforeAndAfte
parseErrors shouldBe empty parseErrors shouldBe empty


// Most of these headers are modeled by Akka HTTP as a Seq[HttpHeader], // Most of these headers are modeled by Akka HTTP as a Seq[HttpHeader],
// but the the Content-Type and Content-Length are special: their // but the Content-Type and Content-Length are special: their
// values relate to the HttpEntity and so they're modeled as part of // values relate to the HttpEntity and so they're modeled as part of
// the HttpEntity. These headers need to be stripped out of the main // the HttpEntity. These headers need to be stripped out of the main
// Seq[Header] and dealt with separately. // Seq[Header] and dealt with separately.
Expand Down
Expand Up @@ -181,7 +181,7 @@ static ByteString concatenate(ByteString left, ByteString right) {
&& leftRope.getTreeDepth() > right.getTreeDepth()) { && leftRope.getTreeDepth() > right.getTreeDepth()) {
// Typically for concatenate-built strings the left-side is deeper than // Typically for concatenate-built strings the left-side is deeper than
// the right. This is our final attempt to concatenate without // 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 // is yet another optimization for building the string by repeatedly
// concatenating on the right. // concatenating on the right.
ByteString newRight = new RopeByteString(leftRope.right, right); ByteString newRight = new RopeByteString(leftRope.right, right);
Expand Down

0 comments on commit b6b0179

Please sign in to comment.