From 3ac3b301bccd20cda34450112a5e50e3fe452935 Mon Sep 17 00:00:00 2001 From: Aaron M Date: Thu, 7 Mar 2024 06:56:30 -0700 Subject: [PATCH] Fix typo in associated-types.md (#1887) A minor nitpick, but as someone new to the language I did spend a bit more time than I'd like to admit trying to understand the meaning of `allow` before realizing this is likely a typo. Maybe I still don't understand, and in that case I'd appreciate a correction! --- src/methods-and-traits/traits/associated-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/methods-and-traits/traits/associated-types.md b/src/methods-and-traits/traits/associated-types.md index a49ec5e9..fc2a575e 100644 --- a/src/methods-and-traits/traits/associated-types.md +++ b/src/methods-and-traits/traits/associated-types.md @@ -1,6 +1,6 @@ # Associated Types -Associated types allow are placeholder types which are filled in by the trait +Associated types are placeholder types which are filled in by the trait implementation. ```rust,editable