瀏覽代碼

Format code according to conventions (#16110)

QMK Bot 3 年之前
父節點
當前提交
b79b8dcdd0
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      quantum/quantum.c

+ 2 - 3
quantum/quantum.c

@@ -95,9 +95,8 @@ __attribute__((weak)) void tap_code16(uint16_t code) {
     register_code16(code);
     if (code == KC_CAPS_LOCK) {
         wait_ms(TAP_HOLD_CAPS_DELAY);
-    }
-    else if (TAP_CODE_DELAY > 0) {
-        wait_ms(TAP_CODE_DELAY); 
+    } else if (TAP_CODE_DELAY > 0) {
+        wait_ms(TAP_CODE_DELAY);
     }
     unregister_code16(code);
 }