aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/ext
diff options
context:
space:
mode:
authorGravatar Dongjoon Hyun <dongjoon@apache.org>2016-01-14 22:12:03 -0800
committerGravatar Dongjoon Hyun <dongjoon@apache.org>2016-02-03 15:27:27 -0800
commit7a9040fe7fb2fc436fab15ebd9373de88084d656 (patch)
tree00fd6e6fbd0bb65ddcdd5ee37c8dfbd0497fd685 /ruby/ext
parenteb1d156d74fc4742175d6c143e5747772e44a4bb (diff)
Remove redundant `the` in comments.
Diffstat (limited to 'ruby/ext')
-rw-r--r--ruby/ext/google/protobuf_c/upb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby/ext/google/protobuf_c/upb.c b/ruby/ext/google/protobuf_c/upb.c
index 048a163a..9e6aa674 100644
--- a/ruby/ext/google/protobuf_c/upb.c
+++ b/ruby/ext/google/protobuf_c/upb.c
@@ -8537,7 +8537,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