~ruther/qmk_firmware

d972919204a5f1cb96d4e16c765d7028a423888a — Dasky 4 years ago 93fc2cb
[Docs] Fix typo in dip switch example (#13688)

1 files changed, 1 insertions(+), 1 deletions(-)

M docs/feature_dip_switch.md
M docs/feature_dip_switch.md => docs/feature_dip_switch.md +1 -1
@@ 24,7 24,7 @@ The callback functions can be inserted into your `<keyboard>.c`:

```c
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;
}
```