pkgs/clan: Fix command typos

This commit is contained in:
a-kenji
2025-07-12 13:54:37 +02:00
parent 81da1e8b1d
commit a890b586b4
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"
)