From 26e299a4a74e4526ee405476bf45559c434d28ce Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Sat, 12 Mar 2022 08:20:36 -0700 Subject: [PATCH] Use consistent prose for `::` Co-authored-by: Camille Gillot --- compiler/rustc_parse/src/parser/diagnostics.rs | 2 +- src/test/ui/generics/single-colon-path-not-const-generics.rs | 2 +- .../ui/generics/single-colon-path-not-const-generics.stderr | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/rustc_parse/src/parser/diagnostics.rs b/compiler/rustc_parse/src/parser/diagnostics.rs index 5b398a513185a..21d5bec65f03a 100644 --- a/compiler/rustc_parse/src/parser/diagnostics.rs +++ b/compiler/rustc_parse/src/parser/diagnostics.rs @@ -2080,7 +2080,7 @@ impl<'a> Parser<'a> { // Find a mistake like "foo::var:A". err.span_suggestion( snapshot.token.span, - "you might have meant to write a path", + "write a path separator here", "::".to_string(), Applicability::MaybeIncorrect, ); diff --git a/src/test/ui/generics/single-colon-path-not-const-generics.rs b/src/test/ui/generics/single-colon-path-not-const-generics.rs index d8ed8fbfe72f1..55a7ae0bb6d91 100644 --- a/src/test/ui/generics/single-colon-path-not-const-generics.rs +++ b/src/test/ui/generics/single-colon-path-not-const-generics.rs @@ -7,7 +7,7 @@ pub mod foo { pub struct Foo { a: Vec, //~^ ERROR expected - //~| HELP you might have meant to write a path + //~| HELP path separator } fn main() {} diff --git a/src/test/ui/generics/single-colon-path-not-const-generics.stderr b/src/test/ui/generics/single-colon-path-not-const-generics.stderr index d509fb7aeaa82..3eafa9fa5a9dd 100644 --- a/src/test/ui/generics/single-colon-path-not-const-generics.stderr +++ b/src/test/ui/generics/single-colon-path-not-const-generics.stderr @@ -5,7 +5,7 @@ LL | a: Vec, | ^ | | | expected one of `,` or `>` - | help: you might have meant to write a path: `::` + | help: write a path separator here: `::` error: aborting due to previous error