Update help message in rev.c

Removed example usage from help message.
This commit is contained in:
Jan 2026-05-15 17:27:58 +02:00 committed by GitHub
parent 960f6922ba
commit 823b14d016
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,7 +26,6 @@ int main(int argc, char *argv[]) {
if (argc == 2 && strcmp(argv[1], "--help") == 0) {
printf("Reverses the contents of a file or text\n");
printf("Usage: rev [file]\n");
printf(" echo text | rev\n");
return 0;
}