From ff3d13ed0efab6692a07059b1d61c53eec6e0412 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 26 Mar 2018 11:20:33 -0300 Subject: [PATCH] Update typo in fixture.rst --- doc/en/fixture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/fixture.rst b/doc/en/fixture.rst index 5bb877c90..493d0b30f 100644 --- a/doc/en/fixture.rst +++ b/doc/en/fixture.rst @@ -294,7 +294,7 @@ The fixtures requested by ``test_foo`` will be instantiated in the following ord 1. ``s1``: is the highest-scoped fixture (``session``). 2. ``m1``: is the second highest-scoped fixture (``module``). -3. ``tempdir``: is a ``function``-scoped fixture, required by ``f1``: it needs to be instantiated at this point +3. ``tmpdir``: is a ``function``-scoped fixture, required by ``f1``: it needs to be instantiated at this point because it is a dependency of ``f1``. 4. ``f1``: is the first ``function``-scoped fixture in ``test_foo`` parameter list. 5. ``f2``: is the last ``function``-scoped fixture in ``test_foo`` parameter list.