From a02a8b88c16c4889eae0d2c951afab72caf14968 Mon Sep 17 00:00:00 2001 From: Ryan Govostes Date: Tue, 13 Feb 2024 19:08:34 -0800 Subject: [PATCH] Fix --maximum_edition usage text (#15828) For the conformance test runner, `--maximum` is not an option, but `--maximum_edition` is. Closes #15828 COPYBARA_INTEGRATE_REVIEW=https://github.com/protocolbuffers/protobuf/pull/15828 from rgov:patch-1 5f123ca5fef241b7f1fcc698c550ef86aeb5972b PiperOrigin-RevId: 606820552 --- conformance/conformance_test_runner.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conformance/conformance_test_runner.cc b/conformance/conformance_test_runner.cc index 5edb3c651e..35c33c63d7 100644 --- a/conformance/conformance_test_runner.cc +++ b/conformance/conformance_test_runner.cc @@ -123,9 +123,9 @@ void UsageError() { " strictly conforming to protobuf\n"); fprintf(stderr, " spec.\n"); fprintf(stderr, - " --maximum edition Only run conformance tests up to \n"); + " --maximum_edition Only run conformance tests up\n"); fprintf(stderr, - " and including the specified\n"); + " to and including the specified\n"); fprintf(stderr, " edition.\n"); fprintf(stderr, " --output_dir Directory to write\n"