···15551555 location: pattern.location(),
15561556 })
15571557 }
15581558- // A duplicate pattern warning should not happen, since there is only on pattern.
15581558+ // A duplicate pattern warning should not happen, since there is only one pattern.
15591559 Reachability::Reachable
15601560 | Reachability::Unreachable(UnreachableCaseClauseReason::DuplicatePattern) => {}
15611561 }
···22228 │ let assert Wobble(w) = Wibble(10)
2323 │ ^^^^^^^^^
24242525-This assertion is will always crash since it matches on a variant which is
2525+This assertion will always crash since it matches on a variant which is
2626never present.
···943943 type_::Warning::AssertAssignmentOnInferredVariant { location } => Diagnostic {
944944 title: "Assertion on inferred variant".into(),
945945 text: wrap(
946946- "This assertion is will always crash since it matches on a variant which is never present.",
946946+ "This assertion will always crash since it matches on a variant which is never present.",
947947 ),
948948 hint: None,
949949 level: diagnostic::Level::Warning,