Browse Source

[Docs] Modify encoder_update_user example to return false (#14541)

pull/14548/head
Dasky 2 years ago
committed by GitHub
parent
commit
19e33b685f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      docs/feature_encoders.md
  2. +1
    -1
      docs/ja/feature_encoders.md

+ 1
- 1
docs/feature_encoders.md View File

@ -81,7 +81,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
tap_code(KC_UP);
}
}
return true;
return false;
}
```


+ 1
- 1
docs/ja/feature_encoders.md View File

@ -76,7 +76,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
tap_code(KC_UP);
}
}
return true;
return false;
}
```


Loading…
Cancel
Save