Skip to content
Snippets Groups Projects
Commit 375df2a8 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix a typo in grammar (keywork -> keyword)

Thanks to Pascal Havé (@hpwxf) for reporting it
parent b313a501
No related branches found
No related tags found
1 merge request!37Feature/language
......@@ -123,9 +123,9 @@ struct cout_kw : TAO_PEGTL_KEYWORD("cout") {};
struct cerr_kw : TAO_PEGTL_KEYWORD("cerr") {};
struct clog_kw : TAO_PEGTL_KEYWORD("clog") {};
struct keywork : sor < basic_type, import_kw, true_kw, false_kw, let_kw, do_kw, while_kw, for_kw, if_kw, else_kw, and_kw, or_kw, xor_kw, not_kw, break_kw, continue_kw, cout_kw, cerr_kw, clog_kw > {};
struct keyword : sor < basic_type, import_kw, true_kw, false_kw, let_kw, do_kw, while_kw, for_kw, if_kw, else_kw, and_kw, or_kw, xor_kw, not_kw, break_kw, continue_kw, cout_kw, cerr_kw, clog_kw > {};
struct identifier_minus_keyword : minus< identifier, keywork > {};
struct identifier_minus_keyword : minus< identifier, keyword > {};
struct module_name : identifier_minus_keyword {};
struct MODULE_NAME : seq< module_name, ignored > {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment