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

fix/just_return_false
Dasky 4 years ago committed by GitHub
parent 6b74e48f81
commit 19e33b685f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/feature_encoders.md
  2. 2
      docs/ja/feature_encoders.md

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

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

Loading…
Cancel
Save