From: Oliver Schneider Date: Mon, 5 Mar 2018 07:33:37 +0000 (+0100) Subject: Typo X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=5b48b03375e11421490d23a7ea36ef05181e3842;p=rust.git Typo --- diff --git a/tests/ui/redundant_field_names.rs b/tests/ui/redundant_field_names.rs index 4ffd0e4cc62..8a17ab0c9b6 100644 --- a/tests/ui/redundant_field_names.rs +++ b/tests/ui/redundant_field_names.rs @@ -39,7 +39,7 @@ fn main() { let _ = ..=end; let _ = start..=end; - // TODO: the followings shoule be linted + // TODO: the following should be linted let _ = ::std::ops::RangeFrom { start: start }; let _ = ::std::ops::RangeTo { end: end }; let _ = ::std::ops::Range { start: start, end: end };