diff --git a/src/driver.cpp b/src/driver.cpp index 1c9f686..093a0c6 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -15,7 +15,7 @@ using namespace yl; namespace { void displayHelp() { std::cout << "Usage:\n" - << " your-compiler [options] \n\n" + << " compiler [options] \n\n" << "Options:\n" << " -h display this message\n" << " -o write executable to \n" diff --git a/test/driver/help.yl b/test/driver/help.yl index 6d94c46..e1384f1 100644 --- a/test/driver/help.yl +++ b/test/driver/help.yl @@ -1,7 +1,7 @@ // RUN: compiler -h 2>&1 | filecheck %s --strict-whitespace // CHECK: Usage: -// CHECK-NEXT: your-compiler [options] +// CHECK-NEXT: compiler [options] // CHECK-NEXT: // CHECK-NEXT: Options: // CHECK-NEXT: -h display this message