Skip to content

Commit c90169c

Browse files
authoredJun 20, 2021
Fixed two typos (#322)
1 parent 1c23ba9 commit c90169c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎docs/basics.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To install AnyIO, run:
1515
1616
pip install anyio
1717
18-
To install a supported version of trio_, you can use install it as an extra like this:
18+
To install a supported version of trio_, you can install it as an extra like this:
1919

2020
.. code-block:: bash
2121

‎docs/tasks.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This can be done with :meth:`TaskGroup.start() <.abc.TaskGroup.start>`::
7474
run(main)
7575

7676
The target coroutine function **must** call ``task_status.started()`` because the task that is
77-
calling will :meth:`TaskGroup.start() <.abc.TaskGroup.start>` will be blocked until then. If the
77+
calling with :meth:`TaskGroup.start() <.abc.TaskGroup.start>` will be blocked until then. If the
7878
spawned task never calls it, then the :meth:`TaskGroup.start() <.abc.TaskGroup.start>` call will
7979
raise a ``RuntimeError``.
8080

0 commit comments

Comments
 (0)
Please sign in to comment.