Merge pull request 'Fix typos' (#1477) from a-kenji-fix/typos into main

This commit is contained in:
clan-bot 2024-05-28 13:02:19 +00:00
commit 52584662a8
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: