From e1607c87f0bb96c1c59d84a2789b7f7d2b69e182 Mon Sep 17 00:00:00 2001 From: iximeow Date: Mon, 14 Sep 2020 13:13:02 -0700 Subject: [PATCH] clean up comment text a bit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Esteban Küber --- compiler/rustc_middle/src/ty/diagnostics.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/rustc_middle/src/ty/diagnostics.rs b/compiler/rustc_middle/src/ty/diagnostics.rs index 0416ef9e643..715319747e3 100644 --- a/compiler/rustc_middle/src/ty/diagnostics.rs +++ b/compiler/rustc_middle/src/ty/diagnostics.rs @@ -204,7 +204,7 @@ pub fn suggest_constraining_type_param( // - insert: `, T: Zar` // // Additionally, there may be no `where` clause whatsoever in the case that this was - // reached becauase the generic parameter has a default: + // reached because the generic parameter has a default: // // Message: // trait Foo {... } @@ -217,8 +217,8 @@ pub fn suggest_constraining_type_param( if matches!(param.kind, hir::GenericParamKind::Type { default: Some(_), .. }) && generics.where_clause.predicates.len() == 0 { - // Suggest a bound, but there are no existing where clauses for this ``, so - // suggest adding one. + // Suggest a bound, but there is no existing `where` clause *and* the type param has a + // default (``), so we suggest adding `where T: Bar`. err.span_suggestion_verbose( generics.where_clause.tail_span_for_suggestion(), &msg_restrict_type_further,