diff --git a/Cargo.toml b/Cargo.toml index 5590027..4cc2500 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ license = "MIT" authors = ["endernon"] repository = "https://git.frfrnocap.men/endernon/rpfixer" readme = "readme.md" -version = "0.4.0" +version = "0.4.1" edition = "2021" [dependencies] diff --git a/readme.md b/readme.md index abe904f..ef06f0b 100644 --- a/readme.md +++ b/readme.md @@ -30,7 +30,7 @@ use std::fs; fn main() { let frfr = fs::read("filepath.png").expect("wtf the path doesnt exist"); let mut fr = rpfixer::idk::fix(frfr); - fs::write(thatpath, fr).expect("file could not write btw"); + fs::write("filepath.png", fr).expect("file could not write btw"); } ```