diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-11-03 12:08:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-03 12:08:51 +0100 |
| commit | b438a5cd2aeeaf887c488e2e49481fa89e478af9 (patch) | |
| tree | cc33f1f423fdd9f6e892c158a1c2ec21a3d9e2e4 /src | |
| parent | 10a8446344cd31c57dfbdd46b2ea6f15a8e55f85 (diff) | |
| parent | 720d618b5fe92efded36178bcc0f5796646d73c1 (diff) | |
| download | rust-b438a5cd2aeeaf887c488e2e49481fa89e478af9.tar.gz rust-b438a5cd2aeeaf887c488e2e49481fa89e478af9.zip | |
Rollup merge of #132499 - RalfJung:unicode_data.rs, r=tgross35
unicode_data.rs: show command for generating file https://github.com/rust-lang/rust/pull/131647 made this an easily runnable tool, now we just have to mention that in the comment. :) Fixes https://github.com/rust-lang/rust/issues/131640.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/unicode-table-generator/src/main.rs | 2 |
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 e1832091d70..415db2c4dbc 100644 --- a/src/tools/unicode-table-generator/src/main.rs +++ b/src/tools/unicode-table-generator/src/main.rs @@ -268,7 +268,7 @@ fn main() { let mut table_file = String::new(); table_file.push_str( - "///! This file is generated by src/tools/unicode-table-generator; do not edit manually!\n", + "///! This file is generated by `./x run src/tools/unicode-table-generator`; do not edit manually!\n", ); // Include the range search function |
