Skip to content

Commit

Permalink
unicode_data.rs: show command for generating file
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Nov 2, 2024
1 parent b5f4883 commit 720d618
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/core/src/unicode/unicode_data.rs
Original file line number Diff line number Diff line change
@@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion src/tools/unicode-table-generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 720d618

Please sign in to comment.