From d24ae372b24d27349db0e1ca5887fd7b04e753c0 Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Sat, 2 Jun 2018 22:28:07 -0700 Subject: [PATCH] Fix small typo --- imgui-examples/examples/hello_world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))