diff options
author | Andy Smith <andysmithfal@users.noreply.github.com> | 2023-08-26 19:43:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 19:43:40 +0100 |
commit | f07490bc092e365ba03dc685b3fc30ad0bf0b752 (patch) | |
tree | 903d3be6049db462c1ad2b4012f7bd87bae3d6ef | |
parent | 7a737235ffd49c32d2c5561e8fe53fd96baa7f96 (diff) |
Corrected duration example, should be number not string (#21839)
-rw-r--r-- | docs/feature_macros.md | 2 |
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"]} ] ], |