Remove extra the (#1088)

This commit is contained in:
Santiago Pastorino 2021-03-11 18:36:25 -03:00 committed by GitHub
parent d6bd146507
commit 1b0372be77
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ trait Foo<T> {
Here, the type `(Self, T, U)` would be `($0, $1, $2)`, where `$N` means a
[`ParamTy`] with the index of `N`.
In rustc, the [`Generics`] structure carries the this information. So the
In rustc, the [`Generics`] structure carries this information. So the
[`Generics`] for `Bar` above would be just like for `U` and would indicate the
'parent' generics of `Foo`, which declares `Self` and `T`. You can read more
in [this chapter](./generics.md).