From dc7fd8bdd76bea319cac862b7d40db9877b52de9 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Thu, 11 Jan 2024 19:25:30 +0200 Subject: [PATCH] CHANGELOG: fix errors in 1.0.0 entry Refs #468. --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ce57326..b7ae00f4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -148,7 +148,7 @@ Features -------- - `#282 `_: When registering a hookimpl which is declared as ``hookwrapper=True`` but whose - function is not a generator function, a ``PluggyValidationError`` exception is + function is not a generator function, a :class:`~pluggy.PluginValidationError` exception is now raised. Previously this problem would cause an error only later, when calling the hook. @@ -158,7 +158,7 @@ Features .. code-block:: python - def my_hook_real_implementation(arg): + def my_hook_implementation(arg): print("before") yield print("after")