diff options
| author | Ralf Jung <post@ralfj.de> | 2024-11-02 10:06:52 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-11-02 10:06:52 +0100 |
| commit | 720d618b5fe92efded36178bcc0f5796646d73c1 (patch) | |
| tree | 96eab4f7eb4e048609c017dc00ced9300196cae6 | |
| parent | b5f4883a06f1d861b108ac892f07f4fa37eb1bed (diff) | |
| download | rust-720d618b5fe92efded36178bcc0f5796646d73c1.tar.gz rust-720d618b5fe92efded36178bcc0f5796646d73c1.zip | |
unicode_data.rs: show command for generating file
| -rw-r--r-- | library/core/src/unicode/unicode_data.rs | 2 | ||||
| -rw-r--r-- | src/tools/unicode-table-generator/src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/unicode/unicode_data.rs b/library/core/src/unicode/unicode_data.rs index cba53bf5054..5465fff5f88 100644 --- a/library/core/src/unicode/unicode_data.rs +++ b/library/core/src/unicode/unicode_data.rs @@ -1,4 +1,4 @@ -///! This file is generated by src/tools/unicode-table-generator; do not edit manually! +///! This file is generated by `./x run src/tools/unicode-table-generator`; do not edit manually! #[rustc_const_unstable(feature = "const_unicode_case_lookup", issue = "101400")] #[inline(always)] 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 |
