diff options
author | fauxpark <fauxpark@gmail.com> | 2017-12-09 16:49:07 +1100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-12-09 10:46:11 -0500 |
commit | af37bb2f78c39c224c995eb57c757c63034a3d9c (patch) | |
tree | 9ad591cb895d1ac13cce6145d11738569dff0a93 /docs/feature_macros.md | |
parent | 4c675a83ba1d3561bfd6baad57a250066f5db4d3 (diff) | |
download | qmk_firmware-af37bb2f78c39c224c995eb57c757c63034a3d9c.tar.gz qmk_firmware-af37bb2f78c39c224c995eb57c757c63034a3d9c.zip |
Fix some of the more obvious typos
Diffstat (limited to 'docs/feature_macros.md')
-rw-r--r-- | docs/feature_macros.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md index f9a4e69d1..a9c138e81 100644 --- a/docs/feature_macros.md +++ b/docs/feature_macros.md | |||
@@ -3,7 +3,7 @@ | |||
3 | Macros allow you to send multiple keystrokes when pressing just one key. QMK has a number of ways to define and use macros. These can do anything you want: type common phrases for you, copypasta, repetitive game movements, or even help you code. | 3 | Macros allow you to send multiple keystrokes when pressing just one key. QMK has a number of ways to define and use macros. These can do anything you want: type common phrases for you, copypasta, repetitive game movements, or even help you code. |
4 | 4 | ||
5 | {% hint style='danger' %} | 5 | {% hint style='danger' %} |
6 | **Security Note**: While it is possible to use macros to send passwords, credit card numbers, and other sensitive information it is a supremely bad idea to do so. Anyone who gets ahold of your keyboard will be able to access that information by opening a text editor. | 6 | **Security Note**: While it is possible to use macros to send passwords, credit card numbers, and other sensitive information it is a supremely bad idea to do so. Anyone who gets a hold of your keyboard will be able to access that information by opening a text editor. |
7 | {% endhint %} | 7 | {% endhint %} |
8 | 8 | ||
9 | ## The New Way: `SEND_STRING()` & `process_record_user` | 9 | ## The New Way: `SEND_STRING()` & `process_record_user` |
@@ -75,7 +75,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
75 | ### TAP, DOWN and UP | 75 | ### TAP, DOWN and UP |
76 | 76 | ||
77 | You may want to use keys in your macros that you can't write down, such as `Ctrl` or `Home`. | 77 | You may want to use keys in your macros that you can't write down, such as `Ctrl` or `Home`. |
78 | You can send arbitary keycodes by wrapping them in: | 78 | You can send arbitrary keycodes by wrapping them in: |
79 | 79 | ||
80 | * `SS_TAP()` presses and releases a key. | 80 | * `SS_TAP()` presses and releases a key. |
81 | * `SS_DOWN()` presses (but does not release) a key. | 81 | * `SS_DOWN()` presses (but does not release) a key. |