We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8bbe59 commit 9c96cf9Copy full SHA for 9c96cf9
macro/src/dialect.rs
@@ -58,7 +58,7 @@ pub fn generate_dialect(input: DialectInput) -> Result<TokenStream, Box<dyn std:
58
59
if input.files().count() > 0 {
60
parser = parser.add_source(&input.files().fold(String::new(), |source, path| {
61
- source + r#"include""# + path + "\""
+ source + "include \"" + path + "\""
62
}))?;
63
}
64
0 commit comments