Merge pull request 'pkgs/clan: Fix command typos' (#4309) from kenji/ke-fix-command-typos into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4309
This commit is contained in:
kenji
2025-07-12 12:49:57 +00:00
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
```
Should print the avilable commands.
Should print the available commands.
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",
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", help="Apply a template of the specified type"
)