about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2025-09-05 22:47:22 +0200
committerGitHub <noreply@github.com>2025-09-05 22:47:22 +0200
commitd82ee660d64c4ab1469c40dda78bd7305e5a9d86 (patch)
treee013b15cb6d292d1f0a4629fd416de220543a6b4
parent690753f7d454d1c2a66a4e4693e9975e4832ef25 (diff)
parent98e10290c9a235641912386ba099b2d4215ec002 (diff)
downloadrust-d82ee660d64c4ab1469c40dda78bd7305e5a9d86.tar.gz
rust-d82ee660d64c4ab1469c40dda78bd7305e5a9d86.zip
Rollup merge of #146234 - hkBst:file-generated-header, r=tgross35
change file-is-generated doc comment to inner

Alternatively this could perhaps be better as a normal comment...
-rw-r--r--library/core/src/unicode/unicode_data.rs2
-rw-r--r--src/tools/unicode-table-generator/src/main.rs2
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 f78983bc339..0bf2f948e85 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 `./x run 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!
 // Alphabetic      :  1727 bytes, 142759 codepoints in 757 ranges (U+000041 - U+0323B0) using skiplist
 // Case_Ignorable  :  1053 bytes,   2749 codepoints in 452 ranges (U+000027 - U+0E01F0) using skiplist
 // Cased           :   407 bytes,   4578 codepoints in 159 ranges (U+000041 - U+01F18A) using skiplist
diff --git a/src/tools/unicode-table-generator/src/main.rs b/src/tools/unicode-table-generator/src/main.rs
index 9399021df76..aa7d97f7f3d 100644
--- a/src/tools/unicode-table-generator/src/main.rs
+++ b/src/tools/unicode-table-generator/src/main.rs
@@ -228,7 +228,7 @@ fn main() {
 
     let mut table_file = String::new();
     table_file.push_str(
-        "///! This file is generated by `./x run 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",
     );
 
     let mut total_bytes = 0;