aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tap_hold.md
diff options
context:
space:
mode:
authoratti2023-12-05 20:06:06 +0100
committerGitHub2023-12-05 20:06:06 +0100
commit87eaab600c47441651d864a45818b5fcc7e46a26 (patch)
treea7a2871c0d7ee978f7d6822cfeb43a5d47b14c4c /docs/tap_hold.md
parent0d36977f3ea0c7c7cf18a4a3825c5ca35d828f84 (diff)
Fixed non-executable codes in the documentation (#22600)
Diffstat (limited to 'docs/tap_hold.md')
-rw-r--r--docs/tap_hold.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tap_hold.md b/docs/tap_hold.md
index 094a10753a..18c90c6932 100644
--- a/docs/tap_hold.md
+++ b/docs/tap_hold.md
@@ -493,7 +493,7 @@ Examples:
One thing that you may notice is that we include the key record for all of the "per key" functions, and may be wondering why we do that.
-Well, it's simple really: customization. But specifically, it depends on how your keyboard is wired up. For instance, if each row is actually using a row in the keyboard's matrix, then it may be simpler to use `if (record->event.row == 3)` instead of checking a whole bunch of keycodes. Which is especially good for those people using the Tap Hold type keys on the home row. So you could fine-tune those to not interfere with your normal typing.
+Well, it's simple really: customization. But specifically, it depends on how your keyboard is wired up. For instance, if each row is actually using a row in the keyboard's matrix, then it may be simpler to use `if (record->event.key.row == 3)` instead of checking a whole bunch of keycodes. Which is especially good for those people using the Tap Hold type keys on the home row. So you could fine-tune those to not interfere with your normal typing.
## Why are there no `*_kb` or `*_user` functions?!