aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/template/keymaps/default/keymap.c2
-rw-r--r--quantum/template/template.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/quantum/template/keymaps/default/keymap.c b/quantum/template/keymaps/default/keymap.c
index a123cd7ba..508b4c79b 100644
--- a/quantum/template/keymaps/default/keymap.c
+++ b/quantum/template/keymaps/default/keymap.c
@@ -16,7 +16,7 @@
16#include "%KEYBOARD%.h" 16#include "%KEYBOARD%.h"
17 17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19[0] = KEYMAP( /* Base */ 19[0] = LAYOUT( /* Base */
20 KC_A, KC_1, KC_H, \ 20 KC_A, KC_1, KC_H, \
21 KC_TAB, KC_SPC \ 21 KC_TAB, KC_SPC \
22), 22),
diff --git a/quantum/template/template.h b/quantum/template/template.h
index 7e2b14f3c..c24bb1650 100644
--- a/quantum/template/template.h
+++ b/quantum/template/template.h
@@ -22,7 +22,7 @@
22// The following is an example using the Planck MIT layout 22// The following is an example using the Planck MIT layout
23// The first section contains all of the arguments 23// The first section contains all of the arguments
24// The second converts the arguments into a two-dimensional array 24// The second converts the arguments into a two-dimensional array
25#define KEYMAP( \ 25#define LAYOUT( \
26 k00, k01, k02, \ 26 k00, k01, k02, \
27 k10, k11 \ 27 k10, k11 \
28) \ 28) \