aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ChangeLog/20210529.md
diff options
context:
space:
mode:
authorFrançois Magimel2025-09-09 23:51:13 +0200
committerGitHub2025-09-09 23:51:13 +0200
commit09ab67c0440d8e5e3faf832d23eb1b754845a573 (patch)
tree0edccafc937149afdc8b964004f61fe80942cfa2 /docs/ChangeLog/20210529.md
parent7be4540b4688eab74920eb4cb2347af43fb6a779 (diff)
docs: fix misspellings (#25555)
* docs: fix misspellings * docs: do line breaks with HTML instead of spaces To remove trailing spaces and to avoid breaking things, line breaks can be done with the HTML br tag.
Diffstat (limited to 'docs/ChangeLog/20210529.md')
-rw-r--r--docs/ChangeLog/20210529.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ChangeLog/20210529.md b/docs/ChangeLog/20210529.md
index 69923b0c5a..e3d250874a 100644
--- a/docs/ChangeLog/20210529.md
+++ b/docs/ChangeLog/20210529.md
@@ -12,7 +12,7 @@ Added support for MK66F18 (Teensy 3.6) microcontroller.
### New command: qmk console ([#12828](https://github.com/qmk/qmk_firmware/pull/12828)) {#new-command-qmk-console}
-A new `qmk console` command has been added for attaching to your keyboard's console. It operates similiarly to QMK Toolbox by allowing you to connect to one or more keyboard consoles to display debugging messages.
+A new `qmk console` command has been added for attaching to your keyboard's console. It operates similarly to QMK Toolbox by allowing you to connect to one or more keyboard consoles to display debugging messages.
### Improved command: qmk config {#improve-command-qmk-config}
@@ -121,8 +121,8 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
tap_code(KC_UP);
}
}
- return true;
- // If you return true, this will allow the keyboard level code to run, as well.
+ return true;
+ // If you return true, this will allow the keyboard level code to run, as well.
//Returning false will override the keyboard level code. Depending on how the keyboard level function is set up.
}
```