diff --git a/imgui-examples/examples/hello_world.rs b/imgui-examples/examples/hello_world.rs index b5dddef..f35d58c 100644 --- a/imgui-examples/examples/hello_world.rs +++ b/imgui-examples/examples/hello_world.rs @@ -9,7 +9,7 @@ mod support; const CLEAR_COLOR: [f32; 4] = [1.0, 1.0, 1.0, 1.0]; -fn main() { support::run("hellow_world.rs".to_owned(), CLEAR_COLOR, hello_world); } +fn main() { support::run("hello_world.rs".to_owned(), CLEAR_COLOR, hello_world); } fn hello_world<'a>(ui: &Ui<'a>) -> bool { ui.window(im_str!("Hello world"))