Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc193c8

Browse files
authoredNov 3, 2024
Rollup merge of rust-lang#132499 - RalfJung:unicode_data.rs, r=tgross35
unicode_data.rs: show command for generating file rust-lang#131647 made this an easily runnable tool, now we just have to mention that in the comment. :) Fixes rust-lang#131640.
2 parents 731cca7 + 720d618 commit cc193c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎library/core/src/unicode/unicode_data.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
///! This file is generated by src/tools/unicode-table-generator; do not edit manually!
1+
///! This file is generated by `./x run src/tools/unicode-table-generator`; do not edit manually!
22
33
#[inline(always)]
44
const fn bitset_search<

‎src/tools/unicode-table-generator/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ fn main() {
268268
let mut table_file = String::new();
269269

270270
table_file.push_str(
271-
"///! This file is generated by src/tools/unicode-table-generator; do not edit manually!\n",
271+
"///! This file is generated by `./x run src/tools/unicode-table-generator`; do not edit manually!\n",
272272
);
273273

274274
// Include the range search function

0 commit comments

Comments
 (0)
Failed to load comments.