about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2021-03-11 18:36:25 -0300
committerGitHub <noreply@github.com>2021-03-11 13:36:25 -0800
commit9cdaf686e797689d3b29faeeac395d9d3fd7f748 (patch)
treeb2f6f0a6c11d5876d777a352393c510c7acfc716 /src/doc/rustc-dev-guide
parent1ff29a60fec96b6a05e639e3ff783d67e16a2e06 (diff)
downloadrust-9cdaf686e797689d3b29faeeac395d9d3fd7f748.tar.gz
rust-9cdaf686e797689d3b29faeeac395d9d3fd7f748.zip
Remove extra the (#1088)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/early-late-bound.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/early-late-bound.md b/src/doc/rustc-dev-guide/src/early-late-bound.md
index 973306b86ae..4178a4af059 100644
--- a/src/doc/rustc-dev-guide/src/early-late-bound.md
+++ b/src/doc/rustc-dev-guide/src/early-late-bound.md
@@ -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).