From 4a4e0d84d122b82121b8d11f1a2dcc771d7660c7 Mon Sep 17 00:00:00 2001 From: mejrs <59372212+mejrs@users.noreply.github.com> Date: Sat, 3 Jul 2021 12:11:41 +0200 Subject: [PATCH] fix typo Co-authored-by: Georg Brandl --- src/instance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instance.rs b/src/instance.rs index dea10940..4cab3c75 100644 --- a/src/instance.rs +++ b/src/instance.rs @@ -383,7 +383,7 @@ where self.as_ref(py).try_borrow() } - /// Attempts to immutably borrow the value `T`, returning an error if the value is currently borrowed. + /// Attempts to mutably borrow the value `T`, returning an error if the value is currently borrowed. /// /// The borrow lasts while the returned [`PyRefMut`] exists. ///