From 4896c90684a955111ef7a8cdcd9da9ca5d475c99 Mon Sep 17 00:00:00 2001 From: MKLeb Date: Mon, 8 May 2023 15:30:25 -0400 Subject: [PATCH] Address review comments (typos, docs) --- tools/pkg/repo/__init__.py | 2 +- tools/pkg/repo/create.py | 2 +- tools/pkg/repo/publish.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/pkg/repo/__init__.py b/tools/pkg/repo/__init__.py index 8a3cbd9c81f..d965fcfd923 100644 --- a/tools/pkg/repo/__init__.py +++ b/tools/pkg/repo/__init__.py @@ -1,5 +1,5 @@ """ -These commands are used to build the pacakge repository files. +These commands are used to build the package repository files. """ # pylint: disable=resource-leakage,broad-except,3rd-party-module-not-gated from __future__ import annotations diff --git a/tools/pkg/repo/create.py b/tools/pkg/repo/create.py index ec4b3331c42..60ed8ad0570 100644 --- a/tools/pkg/repo/create.py +++ b/tools/pkg/repo/create.py @@ -1,5 +1,5 @@ """ -These commands are used to build the pacakge repository files. +These commands are used to build the package repository files. """ # pylint: disable=resource-leakage,broad-except,3rd-party-module-not-gated from __future__ import annotations diff --git a/tools/pkg/repo/publish.py b/tools/pkg/repo/publish.py index cc6a92235c4..1c87d20b490 100644 --- a/tools/pkg/repo/publish.py +++ b/tools/pkg/repo/publish.py @@ -1,5 +1,5 @@ """ -These commands are used to build the pacakge repository files. +These commands are used to build the package repository files. """ # pylint: disable=resource-leakage,broad-except,3rd-party-module-not-gated from __future__ import annotations @@ -55,7 +55,7 @@ publish = command_group( "help": "Local path for the repository that shall be published.", }, "salt_version": { - "help": "The salt version for which to build the repository", + "help": "The salt version of the repository to publish", "required": True, }, } @@ -77,7 +77,7 @@ def nightly(ctx: Context, repo_path: pathlib.Path, salt_version: str = None): "help": "Local path for the repository that shall be published.", }, "salt_version": { - "help": "The salt version for which to build the repository", + "help": "The salt version of the repository to publish", "required": True, }, }