Skip to content

Commit 91e38d2

Browse files
committed
Fix typos
1 parent ab41599 commit 91e38d2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
for the issue (`#68`_) and PR (`#69`_) respectively.
5353

5454
.. _#69: https://github.com/pytest-dev/pluggy/pull/69
55-
.. _#68: https://github.com/pytest-dev/pluggy/issuses/68
55+
.. _#68: https://github.com/pytest-dev/pluggy/issues/68
5656

5757

5858
0.5.0

docs/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ registered hook *implementations*.
2929
subscriptions and can be thought of and used as a rudimentary busless `publish-subscribe`_
3030
event system.
3131

32-
``pluggy``'s approach is meant to let a designer think carefuly about which objects are
32+
``pluggy``'s approach is meant to let a designer think carefully about which objects are
3333
explicitly needed by an extension writer. This is in contrast to subclass-based extension
34-
systems which may expose unecessary state and behaviour or encourage `tight coupling`_
34+
systems which may expose unnecessary state and behaviour or encourage `tight coupling`_
3535
in overlying frameworks.
3636

3737

@@ -85,7 +85,7 @@ a similarly configured ``PluginManager`` instance.
8585

8686
That is, a *mark* type called with ``project_name`` returns an object which
8787
can be used to decorate functions which will then be detected by a
88-
``PluginManager`` which was instantiated with the the same ``project_name``
88+
``PluginManager`` which was instantiated with the same ``project_name``
8989
value.
9090

9191
Furthermore, each *hookimpl* or *hookspec* decorator can configure the
@@ -277,7 +277,7 @@ should be added before registering corresponding *hookimpls*:
277277
278278
@hookspec
279279
def setup_project(config, args):
280-
"""This hook is used to process the inital config and input
280+
"""This hook is used to process the initial config and input
281281
arguments.
282282
"""
283283
@@ -433,7 +433,7 @@ definitions to populate the registry is described in detail in the section on
433433
In summary, you pass a plugin namespace object to the
434434
:py:meth:`~pluggy.PluginManager.register()` and
435435
:py:meth:`~pluggy.PluginManager.add_hookspec()` methods to collect
436-
hook *implementations* and *specfications* from *plugin* namespaces respectively.
436+
hook *implementations* and *specifications* from *plugin* namespaces respectively.
437437

438438
You can unregister any *plugin*'s hooks using
439439
:py:meth:`~pluggy.PluginManager.unregister()` and check if a plugin is

0 commit comments

Comments
 (0)