Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typos corrected #932

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/boot.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# boot.py
`boot.py` lives in the root of your keyboard when mounted as a storage device.
There is a more detailed explanation in the [circuit python docs](https://docs.circuitpython.org/en/latest/README.html),
There is a more detailed explanation in the [CircuitPython Documentation](https://docs.circuitpython.org/en/latest/README.html),
however there are some common use cases for your keyboard listed on this page.


Expand Down
3 changes: 2 additions & 1 deletion docs/en/combo_layers.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ from kmk.keys import KC
combo_layers = {
(1, 2): 3,
}
keyboard.modules.append(Layers(combo_layers))


keyboard = KMKKeyboard()

keyboard.modules.append(Layers(combo_layers))


keyboard.keymap = [
[ #Default
Expand Down
2 changes: 1 addition & 1 deletion docs/en/kmkpython_vs_circuitpython.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ the box.

### CircuitPython
CircuitPython can be installed by following this guide using the guide
for [installing circuit python](https://learn.adafruit.com/welcome-to-circuitpython/installing-circuitpython).
for [installing CircuitPython](https://learn.adafruit.com/welcome-to-circuitpython/installing-circuitpython).
It's recommended to run the latest stable version that is at least 5.0 or higher.
Beta versions may work, but expect limited support.
#### Notable differences include
Expand Down
Loading