mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 06:41:31 +11:00
fix typo
This commit is contained in:
parent
7f2ee9a09a
commit
f66b533a95
|
@ -1,9 +1,9 @@
|
||||||
fn main() {
|
fn main() {
|
||||||
child_window_exemple::child_window();
|
child_window_example::child_window();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
mod child_window_exemple {
|
mod child_window_example {
|
||||||
|
|
||||||
extern crate winit;
|
extern crate winit;
|
||||||
extern crate winapi;
|
extern crate winapi;
|
||||||
|
@ -59,6 +59,6 @@ mod child_window_exemple {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(windows))]
|
#[cfg(not(windows))]
|
||||||
mod child_window_exemple {
|
mod child_window_example {
|
||||||
pub fn child_window() {}
|
pub fn child_window() {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue