Fix small typo

This commit is contained in:
Max Bernstein 2018-06-02 22:28:07 -07:00 committed by GitHub
parent 216e97a2b2
commit d24ae372b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"))