1
0
forked from clan/clan-core

Fix typos

This commit is contained in:
a-kenji 2024-05-28 14:58:38 +02:00
parent 96c33dec7a
commit de147f63e9
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ def produce_clan_core_docs() -> None:
for option_name, info in options.items():
outfile = f"{module_name}/index.md"
# Create seperate files for nested options
# Create separate files for nested options
if len(option_name.split(".")) <= 2:
# i.e. clan-core.clanDir
output = core_outputs.get(

View File

@ -136,7 +136,7 @@ def get_subcommands(
continue
if isinstance(action, argparse._SubParsersAction):
continue # Subparsers handled sperately
continue # Subparsers handled separately
option_strings = ", ".join(action.option_strings)
if option_strings: