diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2021-09-21 15:52:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 07:52:57 -0700 |
commit | 19e33b685fe6ca05bc1c986a272c790ea0cdba45 (patch) | |
tree | 3a4a2ade45dab09b4d7411745e1b4113d46cb3f4 /docs/ja | |
parent | 6b74e48f81fd22f4b982c686df9c8d1f8efae571 (diff) | |
download | qmk_firmware-19e33b685fe6ca05bc1c986a272c790ea0cdba45.tar.gz qmk_firmware-19e33b685fe6ca05bc1c986a272c790ea0cdba45.zip |
[Docs] Modify encoder_update_user example to return false (#14541)
Diffstat (limited to 'docs/ja')
-rw-r--r-- | docs/ja/feature_encoders.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ja/feature_encoders.md b/docs/ja/feature_encoders.md index 21f42d38b..b93d9a9a2 100644 --- a/docs/ja/feature_encoders.md +++ b/docs/ja/feature_encoders.md | |||
@@ -76,7 +76,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
76 | tap_code(KC_UP); | 76 | tap_code(KC_UP); |
77 | } | 77 | } |
78 | } | 78 | } |
79 | return true; | 79 | return false; |
80 | } | 80 | } |
81 | ``` | 81 | ``` |
82 | 82 | ||