aboutsummaryrefslogtreecommitdiff
path: root/docs/ref_functions.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref_functions.md')
-rw-r--r--docs/ref_functions.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/ref_functions.md b/docs/ref_functions.md
index 57f701d79..997c3fa2e 100644
--- a/docs/ref_functions.md
+++ b/docs/ref_functions.md
@@ -26,7 +26,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
26 update_tri_layer(_LOWER, _RAISE, _ADJUST); 26 update_tri_layer(_LOWER, _RAISE, _ADJUST);
27 } 27 }
28 return false; 28 return false;
29 break;
30 case RAISE: 29 case RAISE:
31 if (record->event.pressed) { 30 if (record->event.pressed) {
32 layer_on(_RAISE); 31 layer_on(_RAISE);
@@ -36,7 +35,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
36 update_tri_layer(_LOWER, _RAISE, _ADJUST); 35 update_tri_layer(_LOWER, _RAISE, _ADJUST);
37 } 36 }
38 return false; 37 return false;
39 break;
40 } 38 }
41 return true; 39 return true;
42} 40}