File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2680,13 +2680,13 @@ Asynchronous context managers can be used in an :keyword:`async with` statement.
2680
2680
2681
2681
.. method :: object.__aenter__(self)
2682
2682
2683
- This method is semantically similar to the :meth: `__enter__ `, with only
2684
- difference that it must return an *awaitable *.
2683
+ Semantically similar to :meth: `__enter__ `, the only
2684
+ difference being that it must return an *awaitable *.
2685
2685
2686
2686
.. method :: object.__aexit__(self, exc_type, exc_value, traceback)
2687
2687
2688
- This method is semantically similar to the :meth: `__exit__ `, with only
2689
- difference that it must return an *awaitable *.
2688
+ Semantically similar to :meth: `__exit__ `, the only
2689
+ difference being that it must return an *awaitable *.
2690
2690
2691
2691
An example of an asynchronous context manager class::
2692
2692
You can’t perform that action at this time.
0 commit comments