[Docs] Fix typo in dip switch example (#13688)

master
Dasky 2021-07-24 18:44:31 +01:00 committed by GitHub
parent 93fc2cbc8a
commit d972919204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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