From 160551d8f70732dc3adb7b91eebe9f80b6ac4dbd Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Thu, 25 Jun 2026 13:07:48 +0200 Subject: [PATCH] remove broken text It had a typo, but it should also not be needed since it should be clear from context what it explains --- src/types/closure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/closure.md b/src/types/closure.md index 578e29faf9..f66dd1946d 100644 --- a/src/types/closure.md +++ b/src/types/closure.md @@ -391,7 +391,7 @@ let c = || match x { // Does not capture `*x`. [..] => (), // ^^ Rest pattern. }; -let _ = &mut *x; // OK: `*x` can be borrow here. +let _ = &mut *x; // OK c(); ```