From 62e95c5298503651f3b630396305f04395c9b9fc Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Wed, 25 Jun 2025 08:10:14 -0500 Subject: [PATCH] Fix several typos Found and fixed by running `typos` against the codebase. --- docs/index.rst | 2 +- tests/integration/test_shortcuts.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 373cebc..060880b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -22,7 +22,7 @@ Installation .. md-tab-set:: - .. md-tab-item:: Pip + PyPI (recommented) + .. md-tab-item:: Pip + PyPI (recommended) .. code-block:: console diff --git a/tests/integration/test_shortcuts.py b/tests/integration/test_shortcuts.py index e2db344..f6939c6 100644 --- a/tests/integration/test_shortcuts.py +++ b/tests/integration/test_shortcuts.py @@ -56,7 +56,7 @@ def test_valid(self, factory, spec_file): "empty.yaml", ], ) - def test_falied(self, factory, spec_file): + def test_failed(self, factory, spec_file): spec_path = self.local_test_suite_file_path(spec_file) spec = factory.spec_from_file(spec_path) @@ -97,7 +97,7 @@ def test_valid(self, factory, spec_file): "empty.yaml", ], ) - def test_falied(self, factory, spec_file): + def test_failed(self, factory, spec_file): spec_path = self.local_test_suite_file_path(spec_file) spec = factory.spec_from_file(spec_path)