fix: use rust raw string literal syntax for quote mark escape

This commit is contained in:
2026-06-26 16:04:15 +08:00
parent e3a1195c04
commit 4fcdf902f7
4 changed files with 18 additions and 18 deletions

View File

@@ -35,7 +35,7 @@ pub enum Error {
#[error("given extension name {0} is not presented in application")]
BadExtName(String),
/// Find star (*) extension name with other extension names when converting extension name to index
#[error("wildcard extension name \"*\" is not allowed to be used with other extension names")]
#[error(r#"wildcard extension name "*" is not allowed to be used with other extension names"#)]
ExclusiveStarExtName,
}