aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_macros.md
diff options
context:
space:
mode:
authorIskandarMa <epiciskandar@gmail.com>2022-02-05 05:15:21 +0800
committerGitHub <noreply@github.com>2022-02-05 08:15:21 +1100
commitf52cc210b88936b666ed649eb243de1e0f64d88e (patch)
tree879bde26ea42b6bae8c83c0bbc2332b6743eeafb /docs/feature_macros.md
parent7540a803411ed21a194f49d3ca59db670a6c082e (diff)
downloadqmk_firmware-f52cc210b88936b666ed649eb243de1e0f64d88e.tar.gz
qmk_firmware-f52cc210b88936b666ed649eb243de1e0f64d88e.zip
[Docs] feature_macro.md: minor formatting fix (#16205)
Diffstat (limited to 'docs/feature_macros.md')
-rw-r--r--docs/feature_macros.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md
index 810028cf7..78bc4ba0a 100644
--- a/docs/feature_macros.md
+++ b/docs/feature_macros.md
@@ -40,7 +40,7 @@ You can define up to 32 macros in a `keymap.json` file, as used by [Configurator
40 40
41### Selecting Your Host Keyboard Layout 41### Selecting Your Host Keyboard Layout
42 42
43If you type in a language other than English, or use a non-QWERTY layout like Colemak, Dvorak, or Workman, you may have set your computer's input language to match this layout. This presents a challenge when creating macros- you may need to type different keys to get the same letters! To address this you can add the `host_language` key to your keymap.json, like so: 43If you type in a language other than English, or use a non-QWERTY layout like Colemak, Dvorak, or Workman, you may have set your computer's input language to match this layout. This presents a challenge when creating macros - you may need to type different keys to get the same letters! To address this you can add the `host_language` key to your `keymap.json`, like so:
44 44
45```json 45```json
46{ 46{
@@ -75,7 +75,7 @@ The current list of available languages is:
75 75
76### Macro Basics 76### Macro Basics
77 77
78Each macro is an array consisting of strings and objects (dictionaries.) Strings are typed to your computer while objects allow you to control how your macro is typed out. 78Each macro is an array consisting of strings and objects (dictionaries). Strings are typed to your computer while objects allow you to control how your macro is typed out.
79 79
80#### Object Format 80#### Object Format
81 81