From 4b13b5993e9226f289085e20246c70198b6c693c Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 1 Oct 2021 10:26:56 +0300 Subject: [PATCH] Fix syntax typo in writing_hook_functions.rst --- doc/en/how-to/writing_hook_functions.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/how-to/writing_hook_functions.rst b/doc/en/how-to/writing_hook_functions.rst index 88445c7a7..663bceb63 100644 --- a/doc/en/how-to/writing_hook_functions.rst +++ b/doc/en/how-to/writing_hook_functions.rst @@ -328,8 +328,8 @@ top level of your plugin: .. code-block:: python - been_there_key: pytest.StashKey[bool]() - done_that_key: pytest.StashKey[str]() + been_there_key = pytest.StashKey[bool]() + done_that_key = pytest.StashKey[str]() then use the keys to stash your data at some point: