documentation fix, its 0.4.1 now

This commit is contained in:
endernon 2024-12-15 17:14:17 +00:00
parent 3a4e2481f8
commit 41e21bbfd2
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ license = "MIT"
authors = ["endernon"] authors = ["endernon"]
repository = "https://git.frfrnocap.men/endernon/rpfixer" repository = "https://git.frfrnocap.men/endernon/rpfixer"
readme = "readme.md" readme = "readme.md"
version = "0.4.0" version = "0.4.1"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View file

@ -30,7 +30,7 @@ use std::fs;
fn main() { fn main() {
let frfr = fs::read("filepath.png").expect("wtf the path doesnt exist"); let frfr = fs::read("filepath.png").expect("wtf the path doesnt exist");
let mut fr = rpfixer::idk::fix(frfr); 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");
} }
``` ```