From 18d44689fa627c8712ba40b455f00da6ee835688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 12 Nov 2011 23:56:25 +0100 Subject: [PATCH] Fix white-space in code example. --- src/ui/Key.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/Key.js b/src/ui/Key.js index 5e7a3970..ce02f109 100644 --- a/src/ui/Key.js +++ b/src/ui/Key.js @@ -141,7 +141,7 @@ var Key = this.Key = new function() { * // 'a' key is pressed, fill it with red, otherwise fill it with blue: * function onMouseDown(event) { * var path = new Path.Circle(event.point, 10); - * if(Key.isDown('a')) { + * if (Key.isDown('a')) { * path.fillColor = 'red'; * } else { * path.fillColor = 'blue';