summaryrefslogtreecommitdiff
path: root/docs/feature_encoders.md
diff options
context:
space:
mode:
authorDasky <32983009+daskygit@users.noreply.github.com>2021-09-21 15:52:57 +0100
committerGitHub <noreply@github.com>2021-09-21 07:52:57 -0700
commit19e33b685fe6ca05bc1c986a272c790ea0cdba45 (patch)
tree3a4a2ade45dab09b4d7411745e1b4113d46cb3f4 /docs/feature_encoders.md
parent6b74e48f81fd22f4b982c686df9c8d1f8efae571 (diff)
[Docs] Modify encoder_update_user example to return false (#14541)
Diffstat (limited to 'docs/feature_encoders.md')
-rw-r--r--docs/feature_encoders.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_encoders.md b/docs/feature_encoders.md
index 509f55b917..8e854c1e58 100644
--- a/docs/feature_encoders.md
+++ b/docs/feature_encoders.md
@@ -81,7 +81,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
tap_code(KC_UP);
}
}
- return true;
+ return false;
}
```