Skip to content

Commit

Permalink
cleanup: fix usage string (googleapis#7067)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolduc authored Jul 27, 2021
1 parent d441eaf commit 52f263d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/testing_util/command_line_parsing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ std::string Basename(std::string const& path) {
std::string BuildUsage(std::vector<OptionDescriptor> const& desc,
std::string const& command_path) {
std::ostringstream os;
os << "Usage: " << Basename(command_path) << " [options] <region>\n";
os << "Usage: " << Basename(command_path) << " [options]\n";
for (auto const& d : desc) {
os << " " << d.option << ": " << d.help << "\n";
}
Expand Down

0 comments on commit 52f263d

Please sign in to comment.