From 9bde63f2baaf4b9a66a340b6389c059da757c3dc Mon Sep 17 00:00:00 2001 From: Stephen McDowell Date: Fri, 6 Sep 2024 18:00:11 -0400 Subject: [PATCH] [doc] Fix minor typo in example/parametrize.rst A space is needed for ``ZeroDivisionError`` to render as teletype. --- doc/en/example/parametrize.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/example/parametrize.rst b/doc/en/example/parametrize.rst index 3e449b2eaa..b175510da6 100644 --- a/doc/en/example/parametrize.rst +++ b/doc/en/example/parametrize.rst @@ -686,5 +686,5 @@ For example: assert (6 / example_input) == e In the example above, the first three test cases should run without any -exceptions, while the fourth should raise a``ZeroDivisionError`` exception, +exceptions, while the fourth should raise a ``ZeroDivisionError`` exception, which is expected by pytest.