about summary refs log tree commit diff
path: root/src/test/ui/error-codes
diff options
context:
space:
mode:
authormibac138 <5672750+mibac138@users.noreply.github.com>2020-05-19 22:12:41 +0200
committermibac138 <5672750+mibac138@users.noreply.github.com>2020-05-19 22:12:41 +0200
commitaaeea7ffc36cd705116bf45f0479e51788ae33c5 (patch)
treeed1fb298bef2dcd74d66a356b33c6cdc627acf90 /src/test/ui/error-codes
parentd190e10f74afbe7edb5755bb0e0825450ea6c3bb (diff)
downloadrust-aaeea7ffc36cd705116bf45f0479e51788ae33c5.tar.gz
rust-aaeea7ffc36cd705116bf45f0479e51788ae33c5.zip
Alter wording for `use foo::self` help
Diffstat (limited to 'src/test/ui/error-codes')
-rw-r--r--src/test/ui/error-codes/E0429.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/error-codes/E0429.stderr b/src/test/ui/error-codes/E0429.stderr
index 457782583a5..c598803fa6c 100644
--- a/src/test/ui/error-codes/E0429.stderr
+++ b/src/test/ui/error-codes/E0429.stderr
@@ -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};
    |               ^    ^