[Docs] Fix typo in dip switch example (#13688)
This commit is contained in:
parent
93fc2cbc8a
commit
d972919204
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ The callback functions can be inserted into your `<keyboard>.c`:
|
||||||
|
|
||||||
```c
|
```c
|
||||||
bool dip_switch_update_kb(uint8_t index, bool active) {
|
bool dip_switch_update_kb(uint8_t index, bool active) {
|
||||||
if !(dip_switch_update_user(index, active)) { return false; }
|
if (!dip_switch_update_user(index, active)) { return false; }
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue