diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2021-02-15 16:07:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-15 16:07:01 +0100 |
| commit | db5ae6a6265e12e50f6e3002e37d72d06f46b3b7 (patch) | |
| tree | bd93053af4c9db0a4c16c8ddcbcf6852d3d63360 | |
| parent | 493c6c9f2580a3852e6462a2ef4a3133319537a9 (diff) | |
| parent | ba72bc9b83cb74756d94046f864dc1ab183bbbb8 (diff) | |
| download | rust-db5ae6a6265e12e50f6e3002e37d72d06f46b3b7.tar.gz rust-db5ae6a6265e12e50f6e3002e37d72d06f46b3b7.zip | |
Rollup merge of #82096 - TaKO8Ki:fix-typo, r=GuillaumeGomez
Fix a typo This pull request fixes a typo.
| -rw-r--r-- | src/librustdoc/clean/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/clean/mod.rs b/src/librustdoc/clean/mod.rs index 7e7e417bb65..3decdd02b00 100644 --- a/src/librustdoc/clean/mod.rs +++ b/src/librustdoc/clean/mod.rs @@ -1269,7 +1269,7 @@ impl Clean<Item> for ty::AssocItem { AssocTypeItem(bounds, ty.clean(cx)) } else { - // FIXME: when could this happen? ASsociated items in inherent impls? + // FIXME: when could this happen? Associated items in inherent impls? let type_ = cx.tcx.type_of(self.def_id).clean(cx); TypedefItem( Typedef { |
