Fix more typoes

This commit is contained in:
Josh Klar 2018-10-19 02:09:10 -07:00
parent 74716c4c20
commit 1521a3ec03
No known key found for this signature in database
GPG Key ID: 220F99BD7DB7A99E

View File

@ -49,7 +49,7 @@ keyboard.leader_dictionary = {
Will expire after a timer and trigger the sequence that matches if any. Will expire after a timer and trigger the sequence that matches if any.
This can be enabled with This can be enabled with
```python ```python
from kmk.consts.LeaderMode from kmk.consts import LeaderMode
keyboard.leader_mode = LeaderMode.TIMEOUT keyboard.leader_mode = LeaderMode.TIMEOUT
``` ```
@ -65,7 +65,6 @@ Has no timeout. To end sequence press the enter key, or cancel and do nothing, p
This can be enabled with This can be enabled with
```python ```python
from kmk.consts.LederMode from kmk.consts import LeaderMode
keyboard.leader_mode = LeaderMode.ENTER keyboard.leader_mode = LeaderMode.ENTER
``` ```