From 5e08e96e38cd3b9f6d81657f505ad785e6606e0b Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 24 Dec 2014 15:42:42 +0100 Subject: [PATCH] Fix typo in a cursor keyword. Thanks @nuss-justin! --- components/util/cursor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/util/cursor.rs b/components/util/cursor.rs index 0549ff7592c..0a094ce117d 100644 --- a/components/util/cursor.rs +++ b/components/util/cursor.rs @@ -39,7 +39,7 @@ macro_rules! define_cursor { define_cursor! { "none" => NoCursor = 0, - "defalut" => DefaultCursor = 1, + "default" => DefaultCursor = 1, "pointer" => PointerCursor = 2, "context-menu" => ContextMenuCursor = 3, "help" => HelpCursor = 4,