summaryrefslogtreecommitdiffstats
path: root/movement/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'movement/README.md')
-rw-r--r--movement/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/movement/README.md b/movement/README.md
index e4eeb1c4..009234f8 100644
--- a/movement/README.md
+++ b/movement/README.md
@@ -158,10 +158,10 @@ case EVENT_MODE_BUTTON_UP:
break;
```
-Similarly in response to the user releasing the LIGHT button, we tell Movement to illuminate the LED. Movement does not do this automatically, in case your watch face UI has another use for the LIGHT button.
+Similarly in response to the user pressing the LIGHT button, we tell Movement to illuminate the LED. Movement does not do this automatically, in case your watch face UI has another use for the LIGHT button.
```c
-case EVENT_LIGHT_BUTTON_UP:
+case EVENT_LIGHT_BUTTON_DOWN:
movement_illuminate_led();
break;
```