Skip to content

Commit dcd29b0

Browse files
committed
Merge branch 'master' into 31-altendky-async_callbacks
2 parents 555490e + b3c0ada commit dcd29b0

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):
@@ -76,7 +76,7 @@ functions, which take funcargs, does not work. Please use
7676

7777
Waiting for deferreds in fixtures
7878
=================================
79-
`pytest_twisted.blockon` allows fixtures to wait for deferreds::
79+
``pytest_twisted.blockon`` allows fixtures to wait for deferreds::
8080

8181
@pytest.fixture
8282
def val():
@@ -89,7 +89,7 @@ The twisted greenlet
8989
====================
9090
Some libraries (e.g. corotwine) need to know the greenlet, which is
9191
running the twisted reactor. It's available from the
92-
`twisted_greenlet` funcarg. The following code can be used to make
92+
``twisted_greenlet`` funcarg. The following code can be used to make
9393
corotwine work with pytest-twisted::
9494

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

0 commit comments

Comments
 (0)