aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/template/base/keyboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/template/base/keyboard.h')
-rw-r--r--quantum/template/base/keyboard.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/quantum/template/base/keyboard.h b/quantum/template/base/keyboard.h
index 2e531b1fd..8a21d9257 100644
--- a/quantum/template/base/keyboard.h
+++ b/quantum/template/base/keyboard.h
@@ -13,11 +13,12 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+
#pragma once
#include "quantum.h"
-/* This a shortcut to help you visually see your layout.
+/* This is a shortcut to help you visually see your layout.
*
* The first section contains all of the arguments representing the physical
* layout of the board and position of the keys.
@@ -27,9 +28,9 @@
*/
#define LAYOUT( \
k00, k01, k02, \
- k10, k11 \
+ k10, k12 \
) \
{ \
{ k00, k01, k02 }, \
- { k10, KC_NO, k11 }, \
+ { k10, KC_NO, k12 } \
}