implementations.md typo fix

Minor typo fix
This commit is contained in:
Chris Simpkins 2023-09-09 09:26:54 -04:00 committed by GitHub
parent effbdc1b05
commit b5ae8364e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ Examples of constraining situations:
// T constrains by being an argument to GenericTrait.
impl<T> GenericTrait<T> for i32 { /* ... */ }
// T constrains by being an arguement to GenericStruct
// T constrains by being an argument to GenericStruct
impl<T> Trait for GenericStruct<T> { /* ... */ }
// Likewise, N constrains by being an argument to ConstGenericStruct