Skip to content

Commit 402e239

Browse files
committed
Fix clippy not working because of readon -> reason typo in emilk#7594
1 parent 0086057 commit 402e239

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

clippy.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ disallowed-methods = [
3939
# but we cannot disable them all here (because of e.g. https://github.com/rust-lang/rust-clippy/issues/10406)
4040
# so we do that in `clipppy_wasm.toml` instead.
4141

42-
{ path = "std::env::temp_dir", readon = "Use the tempfile crate instead" },
42+
{ path = "std::env::temp_dir", reason = "Use the tempfile crate instead" },
4343
{ path = "std::panic::catch_unwind", reason = "We compile with `panic = abort" },
44-
{ path = "std::thread::spawn", readon = "Use `std::thread::Builder` and name the thread" },
44+
{ path = "std::thread::spawn", reason = "Use `std::thread::Builder` and name the thread" },
4545
]
4646

4747
# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_names

0 commit comments

Comments
 (0)