summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_lint/src/let_underscore.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_lint/src/let_underscore.rs')
-rw-r--r--compiler/rustc_lint/src/let_underscore.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_lint/src/let_underscore.rs b/compiler/rustc_lint/src/let_underscore.rs
index b83a9665f..3eefd1b0e 100644
--- a/compiler/rustc_lint/src/let_underscore.rs
+++ b/compiler/rustc_lint/src/let_underscore.rs
@@ -25,7 +25,7 @@ declare_lint! {
///
/// fn main() {
/// #[warn(let_underscore_drop)]
- /// // SomeStuct is dropped immediately instead of at end of scope,
+ /// // SomeStruct is dropped immediately instead of at end of scope,
/// // so "Dropping SomeStruct" is printed before "end of main".
/// // The order of prints would be reversed if SomeStruct was bound to
/// // a name (such as "_foo").