aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tap_hold.md
diff options
context:
space:
mode:
authorChris Ko <chriskopher@gmail.com>2020-04-19 18:04:26 -0400
committerGitHub <noreply@github.com>2020-04-19 23:04:26 +0100
commit9b70e53508e844515f2de8841daeaba01e69eb72 (patch)
treedad0368b8cf28c0b6d9c1026fc5ee0475f1b7220 /docs/tap_hold.md
parent33a5dc4fcf3ed00f7cd87271530bcc416012926f (diff)
downloadfirmware-9b70e53508e844515f2de8841daeaba01e69eb72.tar.gz
firmware-9b70e53508e844515f2de8841daeaba01e69eb72.tar.bz2
firmware-9b70e53508e844515f2de8841daeaba01e69eb72.zip
[Docs] Fixed minor typos (#8860)
Diffstat (limited to 'docs/tap_hold.md')
-rw-r--r--docs/tap_hold.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tap_hold.md b/docs/tap_hold.md
index 1719c0bbe..a0b648694 100644
--- a/docs/tap_hold.md
+++ b/docs/tap_hold.md
@@ -12,7 +12,7 @@ As of [PR#1359](https://github.com/qmk/qmk_firmware/pull/1359/), there is a new
#define PERMISSIVE_HOLD
```
-This makes tap and hold keys (like Mod Tap) work better for fast typist, or for high `TAPPING_TERM` settings.
+This makes tap and hold keys (like Mod Tap) work better for fast typists, or for high `TAPPING_TERM` settings.
If you press a Mod Tap key, tap another key (press and release) and then release the Mod Tap key, all within the tapping term, it will output the "tapping" function for both keys.
@@ -35,7 +35,7 @@ To enable this setting, add this to your `config.h`:
#define IGNORE_MOD_TAP_INTERRUPT
```
-Similar to Permissive Hold, this alters how the firmware processes input for fast typist. If you press a Mod Tap key, press another key, release the Mod Tap key, and then release the normal key, it would normally output the "tapping" function for both keys. This may not be desirable for rolling combo keys.
+Similar to Permissive Hold, this alters how the firmware processes inputs for fast typists. If you press a Mod Tap key, press another key, release the Mod Tap key, and then release the normal key, it would normally output the "tapping" function for both keys. This may not be desirable for rolling combo keys.
Setting `Ignore Mod Tap Interrupt` requires holding both keys for the `TAPPING_TERM` to trigger the hold function (the mod).