From b5ae8364e361152059760576b60f180f5ed2276d Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Sat, 9 Sep 2023 09:26:54 -0400 Subject: [PATCH] implementations.md typo fix Minor typo fix --- src/items/implementations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/implementations.md b/src/items/implementations.md index ee651cee5..37965569e 100644 --- a/src/items/implementations.md +++ b/src/items/implementations.md @@ -205,7 +205,7 @@ Examples of constraining situations: // T constrains by being an argument to GenericTrait. impl GenericTrait for i32 { /* ... */ } -// T constrains by being an arguement to GenericStruct +// T constrains by being an argument to GenericStruct impl Trait for GenericStruct { /* ... */ } // Likewise, N constrains by being an argument to ConstGenericStruct