From 8deb95bda97ec599c375c366057de00d1b1c54a8 Mon Sep 17 00:00:00 2001 From: Jorg Brown Date: Fri, 17 Jun 2022 13:59:28 -0700 Subject: [PATCH] Fix typo and update CHANGES.txt --- CHANGES.txt | 4 ++++ conformance/conformance_cpp.cc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 12360dadc6..c3124d73cb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,10 @@ Unreleased version * Handle reflection for message splitting. * make metadata fields lazy. * Extend visibility of plugin library to upb + * Take StringPiece instead of const string& in absl stubs. + * Modernize conformance_cpp.cc. + * Don't request 64-byte alignment unless the toolchain supports it. + 2022-05-27 version 21.1 (C++/Java/Python/PHP/Objective-C/C#/Ruby) diff --git a/conformance/conformance_cpp.cc b/conformance/conformance_cpp.cc index 1185880715..3181a54c67 100644 --- a/conformance/conformance_cpp.cc +++ b/conformance/conformance_cpp.cc @@ -270,6 +270,6 @@ int main() { } total_runs++; } - GOOGLE_LOG(INFO) << "conformance-cpp: recieved EOF from test runner after " + GOOGLE_LOG(INFO) << "conformance-cpp: received EOF from test runner after " << total_runs << " tests"; }