From e7208a29f943e986c815734282c5cc5fd30f4708 Mon Sep 17 00:00:00 2001 From: Camelid Date: Sun, 21 Mar 2021 19:43:49 -0700 Subject: [PATCH] Fix typo --- src/attributes/limits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attributes/limits.md b/src/attributes/limits.md index 01b311a7c..446c33093 100644 --- a/src/attributes/limits.md +++ b/src/attributes/limits.md @@ -29,7 +29,7 @@ a!{} ```rust,compile_fail #![recursion_limit = "1"] -// This fails because it requires two recursive steps to auto-derefence. +// This fails because it requires two recursive steps to auto-dereference. (|_: &u8| {})(&&&1); ```