commit f07490bc092e365ba03dc685b3fc30ad0bf0b752
parent 7a737235ffd49c32d2c5561e8fe53fd96baa7f96
Author: Andy Smith <andysmithfal@users.noreply.github.com>
Date: Sat, 26 Aug 2023 19:43:40 +0100
Corrected duration example, should be number not string (#21839)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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"]}
]
],