Update highlight.cpp

Clarified execution of file
This commit is contained in:
Isak 2018-07-11 00:26:09 +02:00 committed by GitHub
parent 280a298310
commit f135eed0ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ bool is_keyword(std::string&);
int main(int argc, char *argv[])
{
if (argc < 2) {
std::cout << "Usage: " << argv[0] << " <file>\n";
std::cout << "Usage: ./" << argv[0] << " <file>\n";
exit(EXIT_FAILURE);
}
std::ifstream file(argv[1]);