summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAndy Smith <andysmithfal@users.noreply.github.com>2023-08-26 19:43:40 +0100
committerGitHub <noreply@github.com>2023-08-26 19:43:40 +0100
commitf07490bc092e365ba03dc685b3fc30ad0bf0b752 (patch)
tree903d3be6049db462c1ad2b4012f7bd87bae3d6ef /docs
parent7a737235ffd49c32d2c5561e8fe53fd96baa7f96 (diff)
Corrected duration example, should be number not string (#21839)
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_macros.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md
index 08310555fb..c7d6c1a918 100644
--- a/docs/feature_macros.md
+++ b/docs/feature_macros.md
@@ -27,7 +27,7 @@ You can define up to 32 macros in a `keymap.json` file, as used by [Configurator
],
[
{"action":"tap", "keycodes": ["F1"]},
- {"action":"delay", "duration": "1000"},
+ {"action":"delay", "duration": 1000},
{"action":"tap", "keycodes": ["PGDN"]}
]
],