Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass committed Oct 14, 2024
1 parent f860853 commit 1a56a15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ev-dev-tools/src/ev_cli/ev.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ def module_genld(args):


def module_get_templates(args):
interface_files = args.seperator.join(
interface_files = args.separator.join(
[templates['ld-ev.hpp'].filename,
templates['ld-ev.cpp'].filename])

Expand Down Expand Up @@ -633,7 +633,7 @@ def interface_genhdr(args):


def interface_get_templates(args):
interface_files = args.seperator.join(
interface_files = args.separator.join(
[templates['interface_base'].filename,
templates['interface_exports'].filename])

Expand Down Expand Up @@ -776,7 +776,7 @@ def main():

mod_get_templates_parser = mod_actions.add_parser(
'get-templates', aliases=['gt'], parents=[common_parser], help='get paths to template files')
mod_get_templates_parser.add_argument('-s', '--seperator', type=str, default=';', help='Seperator between interface files (default: ;)')
mod_get_templates_parser.add_argument('-s', '--separator', type=str, default=';', help='separator between interface files (default: ;)')
mod_get_templates_parser.set_defaults(action_handler=module_get_templates)

if_actions = parser_if.add_subparsers(metavar='<action>', help='available actions', required=True)
Expand All @@ -793,7 +793,7 @@ def main():

if_get_templates_parser = if_actions.add_parser(
'get-templates', aliases=['gt'], parents=[common_parser], help='get paths to template files')
if_get_templates_parser.add_argument('-s', '--seperator', type=str, default=';', help='Seperator between interface files (default: ;)')
if_get_templates_parser.add_argument('-s', '--separator', type=str, default=';', help='separator between interface files (default: ;)')
if_get_templates_parser.set_defaults(action_handler=interface_get_templates)

hlp_actions = parser_hlp.add_subparsers(metavar='<action>', help='available actions', required=True)
Expand Down Expand Up @@ -825,7 +825,7 @@ def main():

types_get_templates_parser = types_actions.add_parser(
'get-templates', aliases=['gt'], parents=[common_parser], help='get paths to template files')
types_get_templates_parser.add_argument('-s', '--seperator', type=str, default=';', help='Seperator between interface files (default: ;)')
types_get_templates_parser.add_argument('-s', '--separator', type=str, default=';', help='separator between interface files (default: ;)')
types_get_templates_parser.set_defaults(action_handler=types_get_templates)


Expand Down

0 comments on commit 1a56a15

Please sign in to comment.