summary refs log tree commit diff
path: root/common/command.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2015-03-16 12:01:35 -0400
committerJack Humbert <jack.humb@gmail.com>2015-03-16 12:01:35 -0400
commit9307a0a3e415d33d0858283f67fcba4c59a042ff (patch)
tree45252e53439dde1122945646f4fa340cf0a8923e /common/command.c
parentbe86aefdbda560d6810f9594169fee4385c1422d (diff)
parentc35c4283b9c2c65d62fe8dc5e4b7ca49a8f5af33 (diff)
Merge pull request #6 from tmk/master
pulling from tmk
Diffstat (limited to 'common/command.c')
-rw-r--r--common/command.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/common/command.c b/common/command.c
index 1a507e3a46..fbaa9f2d75 100644
--- a/common/command.c
+++ b/common/command.c
@@ -303,7 +303,7 @@ static bool command_common(uint8_t code)
 #endif
             " " STR(BOOTLOADER_SIZE) "\n");
 
-            print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__) 
+            print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__)
                   " AVR-LIBC: " __AVR_LIBC_VERSION_STRING__
                   " AVR_ARCH: avr" STR(__AVR_ARCH__) "\n");
             break;
@@ -542,12 +542,12 @@ static void mousekey_console_help(void)
     print("4:	select mk_time_to_max\n");
     print("5:	select mk_wheel_max_speed\n");
     print("6:	select mk_wheel_time_to_max\n");
-    print("p:	print prameters\n");
+    print("p:	print parameters\n");
     print("d:	set default values\n");
-    print("up:	increase prameters(+1)\n");
-    print("down:	decrease prameters(-1)\n");
-    print("pgup:	increase prameters(+10)\n");
-    print("pgdown:	decrease prameters(-10)\n");
+    print("up:	increase parameters(+1)\n");
+    print("down:	decrease parameters(-1)\n");
+    print("pgup:	increase parameters(+10)\n");
+    print("pgdown:	decrease parameters(-10)\n");
     print("\nspeed = delta * max_speed * (repeat / time_to_max)\n");
     print("where delta: cursor="); pdec(MOUSEKEY_MOVE_DELTA);
     print(", wheel="); pdec(MOUSEKEY_WHEEL_DELTA); print("\n");