Fix broken hyperlink to types.md (#4018)

This commit is contained in:
Rikus Honey 2024-03-30 09:39:00 +02:00 committed by GitHub
parent 0e093a5911
commit 4d033c4497
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -268,8 +268,8 @@ assert_eq!((x, y, z), (1, 2, 3));
# Python::with_gil(example).unwrap()
```
To avoid copying data, [`#[pyclass]`][pyclass] types can directly reference Rust data stored within the Python objects without needing to `.extract()`. See the [corresponding documentation in the class section of the guide](./class.
md#bound-and-interior-mutability) for more detail.
To avoid copying data, [`#[pyclass]`][pyclass] types can directly reference Rust data stored within the Python objects without needing to `.extract()`. See the [corresponding documentation in the class section of the guide](./class.md#bound-and-interior-mutability)
for more detail.
## The GIL Refs API