From 9e26aa1307443ccaaf0939b41f95d790ce3b5466 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 13 Feb 2025 08:17:57 +0000 Subject: [PATCH] Fix typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Viktor Szépe --- README.md | 4 ++-- automatoes/cli/commands/account.py | 2 +- automatoes/cli/commands/order.py | 2 +- docs/index.rst | 2 +- .../{01_user_managment.feature => 01_user_management.feature} | 0 tests/features/steps/migrate_steps.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename tests/features/{01_user_managment.feature => 01_user_management.feature} (100%) diff --git a/README.md b/README.md index ac02751..0c58351 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ original project and to be a direct replacement from ## Why? -Bacause Let's Encrypt's point is to be automatic and seamless and ManuaLE was +Because Let's Encrypt's point is to be automatic and seamless and ManuaLE was designed to be manual. Automatoes will add automatic workflows and new features to evolve ManuaLe's @@ -199,7 +199,7 @@ this one will be deleted, and a new order will be created. > 1. /acme/cert/ is called, and we place keys like we use to do before > 1. we're done! -* If you try to issue certificates for a domain sequence and an oder is pending +* If you try to issue certificates for a domain sequence and an order is pending or invalid, automatoes will ask you to run authorize before. After authorizing a domain sequence you need run issue with the same domain diff --git a/automatoes/cli/commands/account.py b/automatoes/cli/commands/account.py index 7bbd22f..7bb5352 100644 --- a/automatoes/cli/commands/account.py +++ b/automatoes/cli/commands/account.py @@ -21,7 +21,7 @@ @taskio.group(name="account", short_help="Group with commands related to " - "account managment") + "account management") @pass_context def account(ctx): pass diff --git a/automatoes/cli/commands/order.py b/automatoes/cli/commands/order.py index 3a58ed8..add6f36 100644 --- a/automatoes/cli/commands/order.py +++ b/automatoes/cli/commands/order.py @@ -19,7 +19,7 @@ @taskio.group(name="order", short_help="Group with commands related to order " - "managment") + "management") @pass_context def order(ctx): pass diff --git a/docs/index.rst b/docs/index.rst index 20ff1b9..348c6e1 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -20,7 +20,7 @@ original project and to be a direct replacement from Why? ==== -Bacause Let's Encrypt's point is to be automatic and seamless and ManuaLE was +Because Let's Encrypt's point is to be automatic and seamless and ManuaLE was designed to be manual. Automatoes will add automatic workflows and new features to evolve ManuaLe's diff --git a/tests/features/01_user_managment.feature b/tests/features/01_user_management.feature similarity index 100% rename from tests/features/01_user_managment.feature rename to tests/features/01_user_management.feature diff --git a/tests/features/steps/migrate_steps.py b/tests/features/steps/migrate_steps.py index 537763b..1eb06f9 100644 --- a/tests/features/steps/migrate_steps.py +++ b/tests/features/steps/migrate_steps.py @@ -28,7 +28,7 @@ def key_int_to_data(value: int) -> str: - """ This is the invertion of what happens inside + """ This is the inversion of what happens inside automatoes.crypto.certbot_key_data_to_int """ hex_value = hex(value).replace("0x", "")