about summary refs log tree commit diff
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2022-08-23 19:04:50 +0200
committerest31 <MTest31@outlook.com>2022-08-23 19:06:27 +0200
commit754b3e7567a441288ff7ce7f72280f267044113b (patch)
treeacb0210581f760260027892c9290cc217bacf48c
parent0a6af989f60bd84a13cbcb77d2e9d1003ae8af5f (diff)
downloadrust-754b3e7567a441288ff7ce7f72280f267044113b.tar.gz
rust-754b3e7567a441288ff7ce7f72280f267044113b.zip
Change hint to correct path
-rw-r--r--src/tools/unicode-table-generator/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unicode-table-generator/src/main.rs b/src/tools/unicode-table-generator/src/main.rs
index 4720ee7020f..2a01b96f05a 100644
--- a/src/tools/unicode-table-generator/src/main.rs
+++ b/src/tools/unicode-table-generator/src/main.rs
@@ -220,7 +220,7 @@ fn main() {
     let write_location = std::env::args().nth(1).unwrap_or_else(|| {
         eprintln!("Must provide path to write unicode tables to");
         eprintln!(
-            "e.g. {} library/core/unicode/unicode_data.rs",
+            "e.g. {} library/core/src/unicode/unicode_data.rs",
             std::env::args().next().unwrap_or_default()
         );
         std::process::exit(1);