summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeclan Wale <decwale37@gmail.com>2026-05-31 19:03:06 +0100
committerJonathan Corbet <corbet@lwn.net>2026-06-23 14:48:01 -0600
commitb13f724df35c4f1a69e20c965a2fc74fd2921e59 (patch)
treedf7555a28c8bdd587fad5ab6fddb77ef90e69414
parentd42197c73550ac6fa724516e22709b0fe2c11951 (diff)
downloadlwn-docs-mw.tar.gz
lwn-docs-mw.zip
docs: tools: Fix typo 'ackward' to 'awkward' in unittest.rstdocs-7.2-2docs-mw
Signed-off-by: Declan Wale <decwale37@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <CADz3o9mbM60-p1PV8t=nOm7099KnFeYQOyo5J+bC2iiP9PtBJQ@mail.gmail.com>
-rw-r--r--Documentation/tools/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/tools/unittest.rst b/Documentation/tools/unittest.rst
index 14a2b2a65236..0fa8716741df 100644
--- a/Documentation/tools/unittest.rst
+++ b/Documentation/tools/unittest.rst
@@ -11,7 +11,7 @@ While the actual test implementation is usecase dependent, Python already
provides a standard way to add unit tests by using ``import unittest``.
Using such class, requires setting up a test suite. Also, the default format
-is a little bit ackward. To improve it and provide a more uniform way to
+is a little bit awkward. To improve it and provide a more uniform way to
report errors, some unittest classes and functions are defined.