From 0064558479c7522823f29a6659e25ddfa4c2cc29 Mon Sep 17 00:00:00 2001 From: "regicidal.plutophage" <36969337+regicidalplutophage@users.noreply.github.com> Date: Fri, 12 Jul 2024 23:35:34 +0300 Subject: [PATCH] Fix typo in split_keyboards.md --- docs/en/split_keyboards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/split_keyboards.md b/docs/en/split_keyboards.md index 2b127fb67..6e0f478bb 100644 --- a/docs/en/split_keyboards.md +++ b/docs/en/split_keyboards.md @@ -120,7 +120,7 @@ If you want to plug USB in on either side, or are using Bluetooth, this is for y For wired connections you need to pass the UART pins. For Bluetooth, remove the `split_side` like this ```python # Wired, adjust the pins to fit your hardware -split = Split(data_pin=board.D0,gddata_pin2=board.D1,) +split = Split(data_pin=board.D0,data_pin2=board.D1,) # Wireless split = Split(split_type=SplitType.BLE) ```