Skip to content

Commit

Permalink
change error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cuiy0006 authored and scotthart committed Jul 23, 2024
1 parent dec6fb7 commit f98a30a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion google/cloud/edgenetwork/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ this library.

int main(int argc, char* argv[]) try {
if (argc != 4) {
std::cerr << "Usage: " << argv[0] << " project-id location-id\n";
std::cerr << "Usage: " << argv[0] << " project-id location-id zone-id\n";
return 1;
}

Expand Down
2 changes: 1 addition & 1 deletion google/cloud/edgenetwork/quickstart/quickstart.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

int main(int argc, char* argv[]) try {
if (argc != 4) {
std::cerr << "Usage: " << argv[0] << " project-id location-id\n";
std::cerr << "Usage: " << argv[0] << " project-id location-id zone-id\n";
return 1;
}

Expand Down

0 comments on commit f98a30a

Please sign in to comment.