Skip to content

Commit 7df7aee

Browse files
committed
Fix
1 parent 262decf commit 7df7aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macro/src/dialect/utility.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn sanitize_name(name: &str) -> Result<Ident, Error> {
1414
// Replace any "." with "_"
1515
let mut name = name.replace('.', "_");
1616

17-
// Add "_" suffix to avoid conflicts with existing methods
17+
// Add "_" suffix to avoid conflicts with existing methods.
1818
if RESERVED_NAMES.contains(&name.as_str())
1919
|| name
2020
.chars()

0 commit comments

Comments
 (0)