about summary refs log tree commit diff
path: root/doc/languages-frameworks/python.section.md
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-17 18:21:48 -0500
committerfigsoda <figsoda@pm.me>2022-12-17 18:21:48 -0500
commit403e25e3e31319146c3e6ab478485a9c33efa07f (patch)
tree157bca880fa1f7bcdbb4bbbc37acb81807418827 /doc/languages-frameworks/python.section.md
parent42600bc7153e8a5308faf87aead4e27cff93497b (diff)
downloadnixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.tar
nixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.tar.gz
nixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.tar.bz2
nixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.tar.lz
nixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.tar.xz
nixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.tar.zst
nixlib-403e25e3e31319146c3e6ab478485a9c33efa07f.zip
doc: fix typos
Diffstat (limited to 'doc/languages-frameworks/python.section.md')
-rw-r--r--doc/languages-frameworks/python.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index c8aec2e1e9cd..ab5ba4289585 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -605,7 +605,7 @@ been removed, in this case, it's recommended to use `pytestCheckHook`.
 `test` command for a `checkPhase` which runs `pytest`. This is also beneficial
 when a package may need many items disabled to run the test suite.
 
-Using the example above, the analagous `pytestCheckHook` usage would be:
+Using the example above, the analogous `pytestCheckHook` usage would be:
 
 ```
   checkInputs = [ pytestCheckHook ];
@@ -624,7 +624,7 @@ Using the example above, the analagous `pytestCheckHook` usage would be:
   ];
 ```
 
-This is expecially useful when tests need to be conditionally disabled,
+This is especially useful when tests need to be conditionally disabled,
 for example:
 
 ```