From 4d033c4497029c12a8788c28f9ffba6fb18234f4 Mon Sep 17 00:00:00 2001 From: Rikus Honey Date: Sat, 30 Mar 2024 09:39:00 +0200 Subject: [PATCH] Fix broken hyperlink to types.md (#4018) --- guide/src/types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/src/types.md b/guide/src/types.md index 0f1fa3d0af1..a402e52090a 100644 --- a/guide/src/types.md +++ b/guide/src/types.md @@ -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