Update writer.rs (#1174)

Fixes https://github.com/SeaQL/sea-orm/issues/1173
This commit is contained in:
frederikhors 2022-11-04 11:37:44 +01:00 committed by GitHub
parent 485f5e4fb0
commit 9af5885632
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -247,7 +247,7 @@ impl EntityWriter {
pub fn write_doc_comment(lines: &mut Vec<String>) {
let ver = env!("CARGO_PKG_VERSION");
let comments = vec![format!(
"//! SeaORM Entity. Generated by sea-orm-codegen {}",
"//! `SeaORM` Entity. Generated by sea-orm-codegen {}",
ver
)];
lines.extend(comments);