about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2018-12-13 09:55:16 -0800
committerEsteban Küber <esteban@kuber.com.ar>2018-12-13 09:55:16 -0800
commit33a34b06ac8828ffddc91b822fdec9f862658600 (patch)
tree88889134863fe17fc7f44c58731bd879b16402f9
parentc7f1b977ed807d987da0350133b1443fd2caa21f (diff)
downloadrust-33a34b06ac8828ffddc91b822fdec9f862658600.tar.gz
rust-33a34b06ac8828ffddc91b822fdec9f862658600.zip
Wording changes
-rw-r--r--src/libcore/fmt/mod.rs6
-rw-r--r--src/test/ui/suggestions/path-display.stderr4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs
index de936515698..8e0caa5ae33 100644
--- a/src/libcore/fmt/mod.rs
+++ b/src/libcore/fmt/mod.rs
@@ -611,9 +611,9 @@ pub trait Debug {
 #[rustc_on_unimplemented(
     on(
         _Self="std::path::Path",
-        label="`{Self}` cannot be formatted with the default formatter, call `.display()` on it",
-        note="you need to call `.display()` or `.to_string_lossy()` for safely printing paths as \
-              they may contain non-Unicode data"
+        label="`{Self}` cannot be formatted with the default formatter; call `.display()` on it",
+        note="call `.display()` or `.to_string_lossy()` to safely print paths, \
+              as they may contain non-Unicode data"
     ),
     message="`{Self}` doesn't implement `{Display}`",
     label="`{Self}` cannot be formatted with the default formatter",
diff --git a/src/test/ui/suggestions/path-display.stderr b/src/test/ui/suggestions/path-display.stderr
index b0493a559f9..39d236af4f3 100644
--- a/src/test/ui/suggestions/path-display.stderr
+++ b/src/test/ui/suggestions/path-display.stderr
@@ -2,10 +2,10 @@ error[E0277]: `std::path::Path` doesn't implement `std::fmt::Display`
   --> $DIR/path-display.rs:5:20
    |
 LL |     println!("{}", path);
-   |                    ^^^^ `std::path::Path` cannot be formatted with the default formatter, call `.display()` on it
+   |                    ^^^^ `std::path::Path` cannot be formatted with the default formatter; call `.display()` on it
    |
    = help: the trait `std::fmt::Display` is not implemented for `std::path::Path`
-   = note: you need to call `.display()` or `.to_string_lossy()` for safely printing paths as they may contain non-Unicode data
+   = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
    = note: required because of the requirements on the impl of `std::fmt::Display` for `&std::path::Path`
    = note: required by `std::fmt::Display::fmt`