diff options
Diffstat (limited to 'docs/custom_quantum_functions.md')
-rw-r--r-- | docs/custom_quantum_functions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/custom_quantum_functions.md b/docs/custom_quantum_functions.md index 6e869b732..16faf9732 100644 --- a/docs/custom_quantum_functions.md +++ b/docs/custom_quantum_functions.md | |||
@@ -71,7 +71,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
71 | 71 | ||
72 | The `keycode` argument is whatever is defined in your keymap, eg `MO(1)`, `KC_L`, etc. You should use a `switch...case` block to handle these events. | 72 | The `keycode` argument is whatever is defined in your keymap, eg `MO(1)`, `KC_L`, etc. You should use a `switch...case` block to handle these events. |
73 | 73 | ||
74 | The `record` argument contains infomation about the actual press: | 74 | The `record` argument contains information about the actual press: |
75 | 75 | ||
76 | ``` | 76 | ``` |
77 | keyrecord_t record { | 77 | keyrecord_t record { |