From f66b533a959aeab4630ef735bbdb6f4674e794dc Mon Sep 17 00:00:00 2001 From: k-brac Date: Tue, 29 Nov 2016 16:27:23 +0100 Subject: [PATCH] fix typo --- examples/child_window.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/child_window.rs b/examples/child_window.rs index 56fb1694..423c6613 100644 --- a/examples/child_window.rs +++ b/examples/child_window.rs @@ -1,9 +1,9 @@ fn main() { - child_window_exemple::child_window(); + child_window_example::child_window(); } #[cfg(windows)] -mod child_window_exemple { +mod child_window_example { extern crate winit; extern crate winapi; @@ -59,6 +59,6 @@ mod child_window_exemple { } #[cfg(not(windows))] -mod child_window_exemple { +mod child_window_example { pub fn child_window() {} }