`cargo fmt`

pull/7/head
Alex Bethel 2022-04-02 12:41:59 -06:00
parent f842733757
commit 96f2db4dc6
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ fn get_string(lexer: &mut Lexer<Token>) -> Option<String> {
lexer.bump(lexer.remainder().find("*/")?);
let string = lexer.slice()[2..].to_owned();
lexer.bump(2);
Some(string)
}

View File

@ -16,7 +16,7 @@ pub fn repl(ast_print: bool) {
Ok(readline) => {
let readline = readline.trim_end();
rl.add_history_entry(readline);
let partial_data = match partial {
Some(line) => line + readline,
None => readline.to_owned(),