summaryrefslogtreecommitdiff
path: root/docs/ja
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-09-21 23:40:56 +0000
committerQMK Bot <hello@qmk.fm>2021-09-21 23:40:56 +0000
commit8670a3c86c644dd5d3f51b671e34bf914696be44 (patch)
tree8639bc1f8c5739a8bd3d302920ab08fd2b5916a8 /docs/ja
parentdd115fd50e967e2cd5a2d0657cb1359c63f1123d (diff)
parent45f88af4a12938072f58d89769145c46a30fb38c (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/ja')
-rw-r--r--docs/ja/custom_quantum_functions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ja/custom_quantum_functions.md b/docs/ja/custom_quantum_functions.md
index c348f85566..bd3f15a5fd 100644
--- a/docs/ja/custom_quantum_functions.md
+++ b/docs/ja/custom_quantum_functions.md
@@ -211,11 +211,11 @@ void keyboard_post_init_user(void) {
```c
void suspend_power_down_user(void) {
- rgb_matrix_set_suspend_state(true);
+ // code will run multiple times while keyboard is suspended
}
void suspend_wakeup_init_user(void) {
- rgb_matrix_set_suspend_state(false);
+ // code will run on keyboard wakeup
}
```