]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/resolve/privacy-enum-ctor.stderr
Tweak wording
[rust.git] / src / test / ui / resolve / privacy-enum-ctor.stderr
index 4ac18c0e7959965a52c999411cd11ff88735f87f..ed89170fd8a75519ea4c3117ecbff87ae0bec5ff 100644 (file)
@@ -99,13 +99,13 @@ help: a function with a similar name exists
    |
 LL |     let _: E = m::f;
    |                   ~
-help: consider importing one of these items instead...
+help: consider importing one of these items instead
    |
 LL | use std::f32::consts::E;
    |
 LL | use std::f64::consts::E;
    |
-help: ...and refer to it directly
+help: if you import `E`, refer to it directly
    |
 LL -     let _: E = m::E;
 LL +     let _: E = E;