summary refs log tree commit diff
path: root/common/command.c
diff options
context:
space:
mode:
authorBrooks Swinnerton <bswinnerton@gmail.com>2014-11-30 13:27:59 -0500
committerBrooks Swinnerton <bswinnerton@gmail.com>2014-11-30 13:27:59 -0500
commit60acd8996d559f5ab0458c2e1ea46ac9790d14b3 (patch)
tree02ca0a6650a7628686ce59b4375c8a403c8f5ece /common/command.c
parent4192bce16b6cf4c5acc10ea6b26fb714fc132e01 (diff)
Fixing typo in console mode
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 971ef7f0af..380f2d8c08 100644
--- a/common/command.c
+++ b/common/command.c
@@ -302,7 +302,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;
@@ -541,12 +541,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");