Corrected a replace issue in the docs

This commit is contained in:
Kyle Brown 2020-10-13 11:06:05 -07:00
parent 80d95816e4
commit 6ed5d04af5

View File

@ -20,7 +20,7 @@ keyboard.split_offsets = [6, 6, 6, 6] # This is the how many keys are on each c
### EE HANDS ### EE HANDS
If you want to plug in on either side, it can be done fairly easily but requires setup. If you want to plug in on either side, it can be done fairly easily but requires setup.
On each half of your keyboard make a file called kmk_target.py and add one of these lines to the file On each half of your keyboard make a file called kmk_side.py and add one of these lines to the file
depending on where each piece is physically located. depending on where each piece is physically located.
```python ```python
split_target = "Left" split_target = "Left"
@ -30,6 +30,6 @@ split_target = "Right"
and then in your keymap, add the line and then in your keymap, add the line
```python ```python
from kmk_target import split_target from kmk_side import split_target
``` ```