From 1ffea1c4fa7d7ee5217b8017bb90a0de71ba4b94 Mon Sep 17 00:00:00 2001 From: xgpt <1377974+xgpt@users.noreply.github.com> Date: Fri, 19 Jan 2024 13:24:45 -0500 Subject: [PATCH] typos corrected --- docs/en/boot.md | 2 +- docs/en/combo_layers.md | 3 ++- docs/en/kmkpython_vs_circuitpython.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/en/boot.md b/docs/en/boot.md index 993f2cff1..6d52c7ab7 100644 --- a/docs/en/boot.md +++ b/docs/en/boot.md @@ -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. diff --git a/docs/en/combo_layers.md b/docs/en/combo_layers.md index 98f5d91c1..7ac9634c1 100644 --- a/docs/en/combo_layers.md +++ b/docs/en/combo_layers.md @@ -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 diff --git a/docs/en/kmkpython_vs_circuitpython.md b/docs/en/kmkpython_vs_circuitpython.md index 0e5c929bf..2a294e108 100644 --- a/docs/en/kmkpython_vs_circuitpython.md +++ b/docs/en/kmkpython_vs_circuitpython.md @@ -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