fix a suggestion message

This commit is contained in:
Takayuki Maeda 2022-03-11 21:26:06 +09:00
parent bdc3177868
commit 813f00dd4f
3 changed files with 7 additions and 7 deletions

View file

@ -1538,7 +1538,7 @@ impl<'a> Parser<'a> {
self.struct_span_err(self.token.span, "found single colon in a struct field type path")
.span_suggestion_verbose(
self.token.span,
"maybe you meant to write a path separator here",
"write a path separator here",
"::".to_string(),
Applicability::MaybeIncorrect,
)