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

Extend .typos.toml to enforce american english (#7284)

More or less the same list we use at Rerun
This commit is contained in:
Emil Ernerfeldt
2025-07-01 15:54:00 +02:00
committed by GitHub
parent 737c61867b
commit 9d1dce51eb
6 changed files with 134 additions and 6 deletions

View File

@@ -100,9 +100,9 @@ impl BytesLoader for FileLoader {
let entry = entry.get_mut();
*entry = Poll::Ready(result);
ctx.request_repaint();
log::trace!("finished loading {uri:?}");
log::trace!("Finished loading {uri:?}");
} else {
log::trace!("cancelled loading {uri:?}\nNote: This can happen if `forget_image` is called while the image is still loading.");
log::trace!("Canceled loading {uri:?}\nNote: This can happen if `forget_image` is called while the image is still loading.");
}
}
})