Update 1598-generic_associated_types.md

fix typo
This commit is contained in:
Brennan Vincent 2021-09-01 17:39:13 -04:00 committed by GitHub
parent 9f6d4805a9
commit dd0ab17dcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ impl<T> StreamingIterator for StreamIterMut<T> {
### Using an associated type constructor to construct a type
Once a trait has an associated type constructor, it can be applied to any
parameters or concrete term that are in scope. This can be done both inside the
parameters or concrete terms that are in scope. This can be done both inside the
body of the trait and outside of it, using syntax which is analogous to the
syntax for using associated types. Here are some examples: