Alter wording for use foo::self help

This commit is contained in:
mibac138 2020-05-19 22:12:41 +02:00
parent d190e10f74
commit aaeea7ffc3
6 changed files with 14 additions and 14 deletions

View file

@ -4,11 +4,11 @@ error[E0429]: `self` imports are only allowed within a { } list
LL | use std::fmt::self;
| ^^^^^^
|
help: Remove `::self`..
help: consider importing the module directly
|
LL | use std::fmt;
| --
help: ..or add braces around `self`
help: alternatively, use the multi-path `use` syntax to import `self`
|
LL | use std::fmt::{self};
| ^ ^

View file

@ -10,11 +10,11 @@ error[E0429]: `self` imports are only allowed within a { } list
LL | use foo::self;
| ^^^^^^
|
help: Remove `::self`..
help: consider importing the module directly
|
LL | use foo;
| --
help: ..or add braces around `self`
help: alternatively, use the multi-path `use` syntax to import `self`
|
LL | use foo::{self};
| ^ ^

View file

@ -4,11 +4,11 @@ error[E0429]: `self` imports are only allowed within a { } list
LL | use foo::self;
| ^^^^^^
|
help: Remove `::self`..
help: consider importing the module directly
|
LL | use foo;
| --
help: ..or add braces around `self`
help: alternatively, use the multi-path `use` syntax to import `self`
|
LL | use foo::{self};
| ^ ^
@ -19,11 +19,11 @@ error[E0429]: `self` imports are only allowed within a { } list
LL | use std::mem::self;
| ^^^^^^
|
help: Remove `::self`..
help: consider importing the module directly
|
LL | use std::mem;
| --
help: ..or add braces around `self`
help: alternatively, use the multi-path `use` syntax to import `self`
|
LL | use std::mem::{self};
| ^ ^

View file

@ -4,11 +4,11 @@ error[E0429]: `self` imports are only allowed within a { } list
LL | use foo::bar::self;
| ^^^^^^
|
help: Remove `::self`..
help: consider importing the module directly
|
LL | use foo::bar;
| --
help: ..or add braces around `self`
help: alternatively, use the multi-path `use` syntax to import `self`
|
LL | use foo::bar::{self};
| ^ ^

View file

@ -4,11 +4,11 @@ error[E0429]: `self` imports are only allowed within a { } list
LL | use foo::bar::self as abc;
| ^^^^^^
|
help: Remove `::self`..
help: consider importing the module directly
|
LL | use foo::bar as abc;
| --
help: ..or add braces around `self`
help: alternatively, use the multi-path `use` syntax to import `self`
|
LL | use foo::bar::{self as abc};
| ^ ^