From 5d0bcb441937ec5d1cc4e5dff1d3002d7bb00801 Mon Sep 17 00:00:00 2001 From: "dmitry.dygalo" Date: Sat, 5 Jan 2019 20:08:09 +0100 Subject: [PATCH] Fix typo in the Changelog for `get_closest_marker` --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 22f3ac862..f63fd0813 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1022,7 +1022,7 @@ Features - Revamp the internals of the ``pytest.mark`` implementation with correct per node handling which fixes a number of long standing bugs caused by the old design. This introduces new ``Node.iter_markers(name)`` and - ``Node.get_closest_mark(name)`` APIs. Users are **strongly encouraged** to + ``Node.get_closest_marker(name)`` APIs. Users are **strongly encouraged** to read the `reasons for the revamp in the docs `_, or jump over to details about `updating existing code to use the new APIs