Skip to content

Commit

Permalink
Update the store readme (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
j178 authored Feb 17, 2025
1 parent d5f9a7d commit 58aaafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl Store {
.write(true)
.create_new(true)
.open(self.path.join("README")) {
Ok(mut f) => f.write_all(b"This directory is maintained by the pre-commit project.\nLearn more: https://github.com/pre-commit/pre-commit\n")?,
Ok(mut f) => f.write_all(b"This directory is maintained by the prefligit project.\nLearn more: https://github.com/j178/prefligit\n")?,
Err(err) if err.kind() == std::io::ErrorKind::AlreadyExists => (),
Err(err) => return Err(err.into()),
}
Expand Down

0 comments on commit 58aaafc

Please sign in to comment.