Benjamin Peterson 6 жил өмнө
parent
commit
5939bc3619

+ 1 - 1
CHANGES.txt

@@ -647,7 +647,7 @@
     details about APIs.
     details about APIs.
 
 
   Objective-C
   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).
     GPBWellKnownTypes.h for the api additions).
   * Some improvements in startup code (especially when extensions aren’t used).
   * Some improvements in startup code (especially when extensions aren’t used).
 
 

+ 2 - 2
objectivec/GPBMessage.h

@@ -308,7 +308,7 @@ CF_EXTERN_C_END
 - (void)writeToOutputStream:(NSOutputStream *)output;
 - (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.
  * the given output stream.
  *
  *
  * @param output The coded output stream into which to write the message.
  * @param output The coded output stream into which to write the message.
@@ -318,7 +318,7 @@ CF_EXTERN_C_END
 - (void)writeDelimitedToCodedOutputStream:(GPBCodedOutputStream *)output;
 - (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.
  * the given output stream.
  *
  *
  * @param output The output stream into which to write the message.
  * @param output The output stream into which to write the message.

+ 1 - 1
php/ext/google/protobuf/upb.c

@@ -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
 **       to perfectly match the output of reference encoders that always use the
 **       optimal amount of space for each length.
 **       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
 **       guessed wrong the minimum required number of memmove() operations may
 **       be complicated to compute correctly.  Implemented properly, it may have
 **       be complicated to compute correctly.  Implemented properly, it may have
 **       a useful amortized or average cost, but more investigation is required
 **       a useful amortized or average cost, but more investigation is required

+ 1 - 1
ruby/ext/google/protobuf_c/upb.c

@@ -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
 **       to perfectly match the output of reference encoders that always use the
 **       optimal amount of space for each length.
 **       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
 **       guessed wrong the minimum required number of memmove() operations may
 **       be complicated to compute correctly.  Implemented properly, it may have
 **       be complicated to compute correctly.  Implemented properly, it may have
 **       a useful amortized or average cost, but more investigation is required
 **       a useful amortized or average cost, but more investigation is required