Update the usage message to reflect the executable name being lowercase.

This commit is contained in:
kalle 2020-11-15 16:56:26 +01:00
parent 1c9cbb207b
commit 476cadb3c3

View file

@ -4,7 +4,7 @@
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
if (argc != 4) { if (argc != 4) {
std::cout << "Usage: Timer <hours> <minutes> <seconds>" << std::endl; std::cout << "Usage: timer <hours> <minutes> <seconds>" << std::endl;
return 1; return 1;
} }