* Fix typos
* Remove OsError in winit-web
This commit is contained in:
Mads Marquart
2025-06-05 13:10:30 +02:00
committed by GitHub
parent 969237f422
commit b0f26c79ff
4 changed files with 2 additions and 13 deletions

View File

@@ -1,10 +0,0 @@
use std::fmt;
#[derive(Debug)]
pub struct OsError(pub String);
impl fmt::Display for OsError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}

View File

@@ -68,7 +68,6 @@ macro_rules! os_error {
mod r#async;
mod cursor;
mod error;
mod event;
pub(crate) mod event_loop;
mod keyboard;