pkgs/clan: Fix command typos

This commit is contained in:
a-kenji
2025-07-12 13:54:37 +02:00
parent 72f33f736d
commit f97bbc946e
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ nix shell git+https://git.clan.lol/clan/clan-core#clan-cli --refresh
clan --help clan --help
``` ```
Should print the avilable commands. Should print the available commands.
Also checkout the [cli-reference documentation](../../reference/cli/index.md). Also checkout the [cli-reference documentation](../../reference/cli/index.md).

View File

@@ -13,7 +13,7 @@ def register_parser(parser: argparse.ArgumentParser) -> None:
help="the command to run", help="the command to run",
required=True, required=True,
) )
list_parser = subparser.add_parser("list", help="List avilable templates") list_parser = subparser.add_parser("list", help="List available templates")
apply_parser = subparser.add_parser( apply_parser = subparser.add_parser(
"apply", help="Apply a template of the specified type" "apply", help="Apply a template of the specified type"
) )