Skip to content

Commit 18656d2

Browse files
MeanSquaredErrorrbock
authored andcommitted
Fix typos and spelling in ddl2cpp
1 parent 3176bef commit 18656d2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/sqlpp23-ddl2cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -647,9 +647,9 @@ def parseCommandlineArgs():
647647
options.add_argument('--assume-auto-id', action='store_true', help='assume column \'id\' to have an automatic value as if AUTO_INCREMENT was specified (e.g. implicit for SQLite ROWID (default: False)')
648648
options.add_argument('--naming-style', choices=['camel-case', 'identity'], default='camel-case', help='naming style for generated tables and columns.\n\n\n\n \'camel-case\' (default): interprets \'_\' as word separator and translates table names to UpperCamelCase and column names to lowerCamelCase, e.g. \'my_cool_table.important_column\' will be represented as \'MyCoolTable{}.importantColumn\' in generated code.\n \'identity\' uses table and column names as is in generated code (default: \'camel-case\')')
649649
options.add_argument('--generate-table-creation-helper', action='store_true', help='create a helper function for each table that drops and creates the table')
650-
options.add_argument('--use-import-sqlpp23', action='store_true', help='import sqlpp23 as module (instead of including the header file (default: False)')
651-
options.add_argument('--use-import-std', action='store_true', help='import std as module (instead of including the irespective standard header files (default: False)')
652-
options.add_argument('--self-test', action='store_true', help='run parser self test (this ignores all other arguments)')
650+
options.add_argument('--use-import-sqlpp23', action='store_true', help='import sqlpp23 as module instead of including the header file (default: False)')
651+
options.add_argument('--use-import-std', action='store_true', help='import std as module instead of including the respective standard header files (default: False)')
652+
options.add_argument('--self-test', action='store_true', help='run parser self-test (this ignores all other arguments)')
653653

654654
args = argParser.parse_args()
655655

@@ -830,7 +830,7 @@ if __name__ == "__main__":
830830
args = parseCommandlineArgs()
831831

832832
if args.self_test:
833-
print("Running self test")
833+
print("Running self-test")
834834
testParser()
835835
sys.exit()
836836
else:

0 commit comments

Comments
 (0)