Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Jan 8, 2025
1 parent a8bbe59 commit 9c96cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macro/src/dialect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pub fn generate_dialect(input: DialectInput) -> Result<TokenStream, Box<dyn std:

if input.files().count() > 0 {
parser = parser.add_source(&input.files().fold(String::new(), |source, path| {
source + r#"include""# + path + "\""
source + "include \"" + path + "\""
}))?;
}

Expand Down

0 comments on commit 9c96cf9

Please sign in to comment.