Skip to content

Commit

Permalink
chore: formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
Hirevo committed Jan 30, 2023
1 parent 81d5713 commit a2c63fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion som-lexer/src/lexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Lexer {
'\'' => output.push('\''),
'\\' => output.push('\\'),
'0' => output.push('\0'),
_ => {},
_ => {}
},
ch => output.push(ch),
}
Expand Down

0 comments on commit a2c63fb

Please sign in to comment.