extras: fix typo

This commit is contained in:
2 * r + 2 * t 2026-03-12 21:28:44 +11:00
parent 96f54e7b70
commit b4514a7820

View file

@ -10,7 +10,8 @@ int main(int argc, char* argv[]) {
std::cout << GIT_REVISION << std::endl;
std::cout << DISTRIBUTOR << std::endl;
} else if (arg == "-s" || arg == "--short") {
std::cout << PROJECT_NAME << " " << VERSION << ", revision " << GIT_REVISION << ", distrubuted by: " << DISTRIBUTOR << std::endl;
std::cout << PROJECT_NAME << " " << VERSION << ", revision " << GIT_REVISION
<< ", distributed by: " << DISTRIBUTOR << std::endl;
} else {
std::cout << "Usage: " << argv[0] << " [-t | --terse] [-s | --short]" << std::endl;
return arg != "-h" && arg != "--help";