aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/util
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 /src/google/protobuf/util
parenteb1d156d74fc4742175d6c143e5747772e44a4bb (diff)
Remove redundant `the` in comments.
Diffstat (limited to 'src/google/protobuf/util')
-rw-r--r--src/google/protobuf/util/field_mask_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/util/field_mask_util.cc b/src/google/protobuf/util/field_mask_util.cc
index 29ca9c1e..c59f43aa 100644
--- a/src/google/protobuf/util/field_mask_util.cc
+++ b/src/google/protobuf/util/field_mask_util.cc
@@ -103,7 +103,7 @@ class FieldMaskTree {
// Add a field path into the tree. In a FieldMask, each field path matches
// the specified field and also all its sub-fields. If the field path to
// add is a sub-path of an existing field path in the tree (i.e., a leaf
- // node), it means the tree already matchesthe the given path so nothing will
+ // node), it means the tree already matches the given path so nothing will
// be added to the tree. If the path matches an existing non-leaf node in the
// tree, that non-leaf node will be turned into a leaf node with all its
// children removed because the path matches all the node's children.