Skip to content

Commit

Permalink
Fix typo: s/DEFINES_FILES/DEFINES_FILE
Browse files Browse the repository at this point in the history
The bison_target() and flex_target() have a single value DEFINES_FILE
keyword.
  • Loading branch information
petk authored and BlankSpruce committed Oct 14, 2024
1 parent f6bde54 commit afae686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gersemi/command_invocation_dumpers/module_command_dumpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ class WriteBasicPackageVersionFile(ArgumentAwareCommandInvocationDumper):


class BisonTarget(ArgumentAwareCommandInvocationDumper):
one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILES", "VERBOSE", "REPORT_FILE"]
one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILE", "VERBOSE", "REPORT_FILE"]


class DoxygenAddDocs(ArgumentAwareCommandInvocationDumper):
Expand All @@ -710,7 +710,7 @@ class EnvModuleSwap(ArgumentAwareCommandInvocationDumper):


class FlexTarget(ArgumentAwareCommandInvocationDumper):
one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILES"]
one_value_keywords = ["COMPILE_FLAGS", "DEFINES_FILE"]


class GettextCreateTranslations(ArgumentAwareCommandInvocationDumper):
Expand Down

0 comments on commit afae686

Please sign in to comment.