diff --git a/changelog/2765.trivial b/changelog/2765.trivial new file mode 100644 index 000000000..01110b852 --- /dev/null +++ b/changelog/2765.trivial @@ -0,0 +1 @@ +Fix typo in example of passing a callable to markers (in example/markers.rst) \ No newline at end of file diff --git a/doc/en/example/markers.rst b/doc/en/example/markers.rst index 0dbc67310..e3082f279 100644 --- a/doc/en/example/markers.rst +++ b/doc/en/example/markers.rst @@ -435,7 +435,7 @@ The output is as follows:: . 1 passed in 0.12 seconds -We can see that the custom marker has its argument set extended with the function ``hello_world``. This is the key different between creating a custom marker as a callable, which invokes ``__call__`` behind the scenes, and using ``with_args``. +We can see that the custom marker has its argument set extended with the function ``hello_world``. This is the key difference between creating a custom marker as a callable, which invokes ``__call__`` behind the scenes, and using ``with_args``. Reading markers which were set from multiple places