diff options
Diffstat (limited to 'components/plugins/lints.rs')
-rw-r--r-- | components/plugins/lints.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/plugins/lints.rs b/components/plugins/lints.rs index 61394651b1f..aa374cde1d9 100644 --- a/components/plugins/lints.rs +++ b/components/plugins/lints.rs @@ -160,7 +160,7 @@ impl LintPass for UnrootedPass { ast::ExprAssign(_, ref e) | // Match statements allow you to bind onto the variable later in an arm // We need not check arms individually since enum/struct fields are already - // linted in `check_struct_def` and `check_variant ` + // linted in `check_struct_def` and `check_variant` // (so there is no way of destructuring out a `#[must_root]` field) ast::ExprMatch(ref e, _) | // For loops allow you to bind a return value locally |