summaryrefslogtreecommitdiff
path: root/users/konstantin/konstantin.c
diff options
context:
space:
mode:
authorKonstantin Đorđević <vomindoraan@gmail.com>2019-02-16 15:26:14 +0100
committerKonstantin Đorđević <vomindoraan@gmail.com>2019-03-02 15:15:56 +0100
commitbd43df53bdf0009a152251582a05046bbefb0858 (patch)
tree6b226deb525ed1538436ac7fb734a239130d3eb0 /users/konstantin/konstantin.c
parent5a41c06cd7dcf04f5a27ac9b2fa95399c65367d6 (diff)
Use two spaces before inline comments
Diffstat (limited to 'users/konstantin/konstantin.c')
-rw-r--r--users/konstantin/konstantin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/konstantin/konstantin.c b/users/konstantin/konstantin.c
index 686ff32ecc..239252d9c1 100644
--- a/users/konstantin/konstantin.c
+++ b/users/konstantin/konstantin.c
@@ -6,7 +6,7 @@ static void toggle_numpad(void) {
bool numpad_on = IS_LAYER_ON(L_NUMPAD);
bool num_lock_on = IS_HOST_LED_ON(USB_LED_NUM_LOCK);
if (num_lock_on != numpad_on) {
- tap_code(KC_NLCK); // Toggle Num Lock to match layer state
+ tap_code(KC_NLCK); // Toggle Num Lock to match layer state
}
}
#endif
@@ -45,7 +45,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case FN_FNLK:
if (record->event.pressed && record->tap.count == TAPPING_TOGGLE) {
- fn_lock = !IS_LAYER_ON(L_FN); // Fn layer will be toggled after this
+ fn_lock = !IS_LAYER_ON(L_FN); // Fn layer will be toggled after this
}
return true;
#endif