Skip to content

Commit

Permalink
Merge pull request #129 from sharkdp/fix-formatting
Browse files Browse the repository at this point in the history
Fix minor formatting issue
  • Loading branch information
sharkdp authored Jul 25, 2023
2 parents 0329fc9 + a87882c commit bbabdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numbat-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ pub fn interpret(code: &str) -> String {
InterpreterResult::Continue => "Nothing to show".into(),
InterpreterResult::Exit(_) => "Error!".into(),
},
Err(e) => format!("{:#}", e)
Err(e) => format!("{:#}", e),
}
}

0 comments on commit bbabdde

Please sign in to comment.