Remove stray " character from docstring (#3852)

This commit is contained in:
Lily Foote 2024-02-17 17:04:35 +00:00 committed by GitHub
parent c33d330b18
commit 5f42c02e4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -766,7 +766,7 @@ impl<T> IntoPy<PyObject> for Borrowed<'_, '_, T> {
/// # A note on `Send` and `Sync`
///
/// Accessing this object is threadsafe, since any access to its API requires a [`Python<'py>`](crate::Python) token.
/// As you can only get this by acquiring the GIL, `Py<...>` "implements [`Send`] and [`Sync`].
/// As you can only get this by acquiring the GIL, `Py<...>` implements [`Send`] and [`Sync`].
///
/// [`Rc`]: std::rc::Rc
/// [`RefCell`]: std::cell::RefCell