diff options
author | Gigahawk <jasperchan515@gmail.com> | 2022-01-21 06:17:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 14:17:19 +0000 |
commit | ad09160b03d5139a1fa05ac1fb44c1451485a616 (patch) | |
tree | eb856010c25d852fe3080d599a7b91aff634cce2 | |
parent | 94624d64bab74b11d93b86d8796dd83b4677e024 (diff) | |
download | qmk_firmware-ad09160b03d5139a1fa05ac1fb44c1451485a616.tar.gz qmk_firmware-ad09160b03d5139a1fa05ac1fb44c1451485a616.zip |
docs: fix typo in led matrix docs (#15972)
-rw-r--r-- | docs/feature_led_matrix.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_led_matrix.md b/docs/feature_led_matrix.md index dfd63503f2..37f38cc6ed 100644 --- a/docs/feature_led_matrix.md +++ b/docs/feature_led_matrix.md @@ -333,7 +333,7 @@ Where `28` is an unused index from `eeconfig.h`. If you want to set custom indicators, such as an LED for Caps Lock, or layer indication, you can use the `led_matrix_indicators_kb` or `led_matrix_indicators_user` function for that: ```c void led_matrix_indicators_kb(void) { - led_matrix_set_color(index, value); + led_matrix_set_value(index, value); } ``` |