Skip to content

Commit 894b187

Browse files
fixup: precommit
1 parent 22b8a4d commit 894b187

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

changelog/5975.deprecation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Deprecate using direct constructors for ``Nodes``.
33
Instead they are new constructed via ``Node.from_parent``.
44

55
This transitional mechanism enables us to detangle the very intensely
6-
entangled ``Node`` relationships by enforcing more controlled creation/configruation patterns.
6+
entangled ``Node`` relationships by enforcing more controlled creation/configruation patterns.

doc/en/example/py2py3/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ def collect(self):
1313
def pytest_pycollect_makemodule(path, parent):
1414
bn = path.basename
1515
if "py3" in bn and not py3 or ("py2" in bn and py3):
16-
return DummyCollector.from_parent(parent, fspath=path)
16+
return DummyCollector.from_parent(parent, fspath=path)

doc/en/writing_plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ only want to use but not write plugins.
1111

1212
A plugin contains one or multiple hook functions. :ref:`Writing hooks <writinghooks>`
1313
explains the basics and details of how you can write a hook function yourself.
14-
``pytest`` implements all aspects of configuration, collection, running and
14+
``pytest`` implements all aspects of configuration, collection, running and
1515
reporting by calling :ref:`well specified hooks <hook-reference>` of the following plugins:
1616

1717
* builtin plugins: loaded from pytest's internal ``_pytest`` directory.

0 commit comments

Comments
 (0)