From e1559c8efdcfc2d66edfd10b02022ecd737534b9 Mon Sep 17 00:00:00 2001 From: Daniel Kenji Toyama Date: Tue, 30 Apr 2024 14:04:33 -0700 Subject: [PATCH] Fix typo `s/a the/the/`. PiperOrigin-RevId: 629522997 --- src/google/protobuf/text_format.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/protobuf/text_format.cc b/src/google/protobuf/text_format.cc index 6b3c01bfbb..dd41e5600f 100644 --- a/src/google/protobuf/text_format.cc +++ b/src/google/protobuf/text_format.cc @@ -1374,8 +1374,8 @@ class TextFormat::Parser::ParserImpl { return result; } - // Attempts to consume the supplied value. Returns false if a the - // token found does not match the value specified. + // Attempts to consume the supplied value. Returns false if the token found + // does not match the value specified. bool TryConsume(const std::string& value) { if (tokenizer_.current().text == value) { tokenizer_.Next();