Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 committed Dec 20, 2023
1 parent 1ac69fd commit aabf5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fn read(path: &str) -> Result<String> {
fn exists(path: &str) -> String {
let path = std::path::Path::new(path);
// This is for parity with the truthy-ness of byond's fexists()
if path.exists(){
if path.exists() {
String::from("true")
}
else {
Expand Down

0 comments on commit aabf5e5

Please sign in to comment.