1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Fix some typos from the cranky-clippy transition (#4417)

This commit is contained in:
YgorSouza
2024-04-26 07:46:25 +02:00
committed by GitHub
parent 2f508d6a61
commit 0bc59f578b
3 changed files with 6 additions and 6 deletions

View File

@@ -237,11 +237,11 @@ verbose_file_reads = "warn"
wildcard_dependencies = "warn"
zero_sized_map_values = "warn"
# TODO(emilk): enable more of these linits:
# TODO(emilk): enable more of these lints:
iter_over_hash_type = "allow"
let_underscore_untyped = "allow"
missing_assert_message = "allow"
print_stderr = "allow" # TODO(emilk): use `log` crate insteaditer_over_hash_type = "allow"
print_stderr = "allow" # TODO(emilk): use `log` crate instead
should_panic_without_expect = "allow"
too_many_lines = "allow"
unwrap_used = "allow" # TODO(emilk): We really wanna warn on this one