Remove 'the' duplicates
This commit is contained in:
parent
bc660a7403
commit
b6b017902f
4 changed files with 4 additions and 4 deletions
|
|
@ -66,7 +66,7 @@ public abstract class DateTime {
|
|||
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`
|
||||
*/
|
||||
public abstract String monthStr();
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public abstract class Uri {
|
|||
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();
|
||||
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ class HttpModelIntegrationSpec extends WordSpec with Matchers with BeforeAndAfte
|
|||
parseErrors shouldBe empty
|
||||
|
||||
// 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
|
||||
// the HttpEntity. These headers need to be stripped out of the main
|
||||
// Seq[Header] and dealt with separately.
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue