Skip to content

Commit b3c0ada

Browse files
authored
Fix some single ` in README.rst
1 parent 4f5f656 commit b3c0ada

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ is to ``import pytest_twisted as pt``.
5252

5353
inlineCallbacks
5454
=================
55-
Using `twisted.internet.defer.inlineCallbacks` as a decorator for test
55+
Using ``twisted.internet.defer.inlineCallbacks`` as a decorator for test
5656
functions, which take funcargs, does not work. Please use
57-
`pytest_twisted.inlineCallbacks` instead::
57+
``pytest_twisted.inlineCallbacks`` instead::
5858

5959
@pytest_twisted.inlineCallbacks
6060
def test_some_stuff(tmpdir):
@@ -63,7 +63,7 @@ functions, which take funcargs, does not work. Please use
6363

6464
Waiting for deferreds in fixtures
6565
=================================
66-
`pytest_twisted.blockon` allows fixtures to wait for deferreds::
66+
``pytest_twisted.blockon`` allows fixtures to wait for deferreds::
6767

6868
@pytest.fixture
6969
def val():
@@ -76,7 +76,7 @@ The twisted greenlet
7676
====================
7777
Some libraries (e.g. corotwine) need to know the greenlet, which is
7878
running the twisted reactor. It's available from the
79-
`twisted_greenlet` funcarg. The following code can be used to make
79+
``twisted_greenlet`` funcarg. The following code can be used to make
8080
corotwine work with pytest-twisted::
8181

8282
@pytest.fixture(scope="session", autouse=True)

0 commit comments

Comments
 (0)