Skip to content

Commit dc7fd8b

Browse files
committed
CHANGELOG: fix errors in 1.0.0 entry
Refs pytest-dev#468.
1 parent 29912d7 commit dc7fd8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CHANGELOG.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Features
148148
--------
149149

150150
- `#282 <https://github.com/pytest-dev/pluggy/issues/282>`_: When registering a hookimpl which is declared as ``hookwrapper=True`` but whose
151-
function is not a generator function, a ``PluggyValidationError`` exception is
151+
function is not a generator function, a :class:`~pluggy.PluginValidationError` exception is
152152
now raised.
153153

154154
Previously this problem would cause an error only later, when calling the hook.
@@ -158,7 +158,7 @@ Features
158158

159159
.. code-block:: python
160160
161-
def my_hook_real_implementation(arg):
161+
def my_hook_implementation(arg):
162162
print("before")
163163
yield
164164
print("after")

0 commit comments

Comments
 (0)