docs: fix typos

This commit is contained in:
Joseph Perez 2023-12-07 10:10:15 +01:00
parent 07726aefc4
commit e73c795967
No known key found for this signature in database
GPG Key ID: FE77882EF19365C5
2 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@
- [Emulating numeric types](class/numeric.md)
- [Emulating callable objects](class/call.md)
- [Type conversions](conversions.md)
- [Mapping of Rust types to Python types](conversions/tables.md)]
- [Conversion traits](conversions/traits.md)]
- [Mapping of Rust types to Python types](conversions/tables.md)
- [Conversion traits](conversions/traits.md)
- [Python exceptions](exception.md)
- [Calling Python from Rust](python_from_rust.md)
- [Using `async` and `await`](async-await.md)

View File

@ -30,7 +30,7 @@ Resulting future of an `async fn` decorated by `#[pyfunction]` must be `Send + '
As a consequence, `async fn` parameters and return types must also be `Send + 'static`, so it is not possible to have a signature like `async fn does_not_compile(arg: &PyAny, py: Python<'_>) -> &PyAny`.
However, there is an exception for method receiver, so async methods can accept `&self`/`&mut self`
However, there is an exception for method receiver, so async methods can accept `&self`/`&mut self`.
## Implicit GIL holding