Skip to content
Snippets Groups Projects
Verified Commit 35d7e0d8 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: improved generated comment

parent ebc253b5
No related branches found
No related tags found
No related merge requests found
Pipeline #2203 failed
......@@ -52,7 +52,7 @@ fn main() {
.open(dest_path)
.unwrap_or_else(|_| panic!("Can't open '{}'", BUILD_OUT_FILE));
let module_doc_string = "//! Global constants, such as compiler version used, algorithms, compression and filters supported and others\n";
let module_doc_string = "//! Global constants, such as compiler version used, features, platform information and others\n";
writeln!(file, "{}", module_doc_string).unwrap();
let generated_annotation = "// @generated\n";
......
//! Global constants, such as compiler version used, algorithms, compression and filters supported and others
//! Global constants, such as compiler version used, features, platform information and others
pub const COMPILATION_DATE: &str = "-";
pub const COMPILATION_TIME: &str = "-";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment