Skip to content

Commit

Permalink
Fix "the the".
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminp authored and acozzette committed Mar 25, 2019
1 parent 3a3956e commit 5939bc3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@
details about APIs.

Objective-C
* Helpers are now provided for working the the Any well known type (see
* Helpers are now provided for working the Any well known type (see
GPBWellKnownTypes.h for the api additions).
* Some improvements in startup code (especially when extensions aren’t used).

Expand Down
4 changes: 2 additions & 2 deletions objectivec/GPBMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ CF_EXTERN_C_END
- (void)writeToOutputStream:(NSOutputStream *)output;

/**
* Writes out a varint for the message size followed by the the message to
* Writes out a varint for the message size followed by the message to
* the given output stream.
*
* @param output The coded output stream into which to write the message.
Expand All @@ -318,7 +318,7 @@ CF_EXTERN_C_END
- (void)writeDelimitedToCodedOutputStream:(GPBCodedOutputStream *)output;

/**
* Writes out a varint for the message size followed by the the message to
* Writes out a varint for the message size followed by the message to
* the given output stream.
*
* @param output The output stream into which to write the message.
Expand Down
2 changes: 1 addition & 1 deletion php/ext/google/protobuf/upb.c
Original file line number Diff line number Diff line change
Expand Up @@ -7835,7 +7835,7 @@ bool upb_pbdecoder_setmaxnesting(upb_pbdecoder *d, size_t max) {
** to perfectly match the output of reference encoders that always use the
** optimal amount of space for each length.
**
** (2) requires guessing the the size upfront, and if multiple lengths are
** (2) requires guessing the size upfront, and if multiple lengths are
** guessed wrong the minimum required number of memmove() operations may
** be complicated to compute correctly. Implemented properly, it may have
** a useful amortized or average cost, but more investigation is required
Expand Down
2 changes: 1 addition & 1 deletion ruby/ext/google/protobuf_c/upb.c
Original file line number Diff line number Diff line change
Expand Up @@ -11585,7 +11585,7 @@ bool upb_pbdecoder_setmaxnesting(upb_pbdecoder *d, size_t max) {
** to perfectly match the output of reference encoders that always use the
** optimal amount of space for each length.
**
** (2) requires guessing the the size upfront, and if multiple lengths are
** (2) requires guessing the size upfront, and if multiple lengths are
** guessed wrong the minimum required number of memmove() operations may
** be complicated to compute correctly. Implemented properly, it may have
** a useful amortized or average cost, but more investigation is required
Expand Down

0 comments on commit 5939bc3

Please sign in to comment.