From f97bbc946ed6c7c5ff701caae1a126e8d1c04b94 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Sat, 12 Jul 2025 13:54:37 +0200 Subject: [PATCH] pkgs/clan: Fix command typos --- docs/site/guides/getting-started/index.md | 2 +- pkgs/clan-cli/clan_cli/templates/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/site/guides/getting-started/index.md b/docs/site/guides/getting-started/index.md index 30bfaaf9d..3e33018f3 100644 --- a/docs/site/guides/getting-started/index.md +++ b/docs/site/guides/getting-started/index.md @@ -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). diff --git a/pkgs/clan-cli/clan_cli/templates/__init__.py b/pkgs/clan-cli/clan_cli/templates/__init__.py index 8f0f175dc..6d23c4f4e 100644 --- a/pkgs/clan-cli/clan_cli/templates/__init__.py +++ b/pkgs/clan-cli/clan_cli/templates/__init__.py @@ -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" )