diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2022-07-12 20:58:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 04:58:16 +0100 |
commit | 36c25756583dfb5fc4b3069992dabd45b8f7a213 (patch) | |
tree | 0af3b48b2f1cc7cd5b5e5b67b70cbad3caa61943 /docs | |
parent | 6bb2ed68a8b4b76dcf9608d7de5b13533b6ba8b3 (diff) | |
download | qmk_firmware-36c25756583dfb5fc4b3069992dabd45b8f7a213.tar.gz qmk_firmware-36c25756583dfb5fc4b3069992dabd45b8f7a213.zip |
Grammar fixes for docs/feature_converters.md (#17652)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_converters.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_converters.md b/docs/feature_converters.md index 4845912575..9cca76e8e8 100644 --- a/docs/feature_converters.md +++ b/docs/feature_converters.md @@ -29,7 +29,7 @@ qmk flash -c -kb keebio/bdn9/rev1 -km default -e CONVERT_TO=proton_c You can also add the same `CONVERT_TO=<target>` to your keymap's `rules.mk`, which will accomplish the same thing. -?> If you get errors about `PORTB/DDRB`, etc not being defined, so you'll need to convert the keyboard's code to use the [GPIO Controls](gpio_control.md) that will work for both ARM and AVR. This shouldn't affect the AVR builds at all. +?> If you get errors about `PORTB/DDRB`, etc not being defined, you'll need to convert the keyboard's code to use the [GPIO Controls](gpio_control.md) that will work for both ARM and AVR. This shouldn't affect the AVR builds at all. ### Conditional Configuration @@ -63,7 +63,7 @@ Converter summary: ### Proton C :id=proton_c -The Proton C only has one on-board LED (C13), and by default, the TXLED (D5) is mapped to it. If you want the RXLED (B0) mapped to it instead, add this like to your `config.h`: +The Proton C only has one on-board LED (C13), and by default, the TXLED (D5) is mapped to it. If you want the RXLED (B0) mapped to it instead, add this line to your `config.h`: ```c #define CONVERT_TO_PROTON_C_RXLED |