From 1b0372be77678e7d945412462c85f85edbdf3d57 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Thu, 11 Mar 2021 18:36:25 -0300 Subject: [PATCH] Remove extra the (#1088) --- src/early-late-bound.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/early-late-bound.md b/src/early-late-bound.md index 973306b8..4178a4af 100644 --- a/src/early-late-bound.md +++ b/src/early-late-bound.md @@ -64,7 +64,7 @@ trait Foo { 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).