Merge pull request #1399 from chrissimpkins/patch-1

implementations.md typo fix
This commit is contained in:
Eric Huss 2023-09-09 13:38:41 +00:00 committed by GitHub
commit cef4aafabd
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