From 3e907f01cc2a62e32700dd8e5205f4d270b73deb Mon Sep 17 00:00:00 2001 From: Aaron M Date: Thu, 7 Mar 2024 04:33:39 -0700 Subject: [PATCH] Fix typo in associated-types.md A minor nitpick, but as someone new to the language I got stuck trying to understand the `allow` bit before realizing this is likely a typo. --- 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 a49ec5e9aed1..fc2a575e06a8 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