~ruther/qmk_firmware

19e33b685fe6ca05bc1c986a272c790ea0cdba45 — Dasky 4 years ago 6b74e48
[Docs] Modify encoder_update_user example to return false (#14541)

2 files changed, 2 insertions(+), 2 deletions(-)

M docs/feature_encoders.md
M docs/ja/feature_encoders.md
M docs/feature_encoders.md => docs/feature_encoders.md +1 -1
@@ 81,7 81,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
            tap_code(KC_UP);
        }
    }
    return true;
    return false;
}
```


M docs/ja/feature_encoders.md => docs/ja/feature_encoders.md +1 -1
@@ 76,7 76,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
            tap_code(KC_UP);
        }
    }
    return true;
    return false;
}
```