diff options
author | Noah Andrews <NoahAndrews@users.noreply.github.com> | 2016-03-04 10:53:58 -0500 |
---|---|---|
committer | Noah Andrews <NoahAndrews@users.noreply.github.com> | 2016-03-04 10:53:58 -0500 |
commit | ee1b94045e5bebda517119cb1853b0ab3fd0f499 (patch) | |
tree | 8c57d8e590fb9baf8a5eac7415010a361d8b1ba3 | |
parent | 5f3e99f67b2d8ae4d04fa132c154e1c3aed68e7b (diff) | |
download | qmk_firmware-ee1b94045e5bebda517119cb1853b0ab3fd0f499.tar.gz qmk_firmware-ee1b94045e5bebda517119cb1853b0ab3fd0f499.zip |
Remove extraneous comma
-rw-r--r-- | quantum/template/template.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/template/template.h b/quantum/template/template.h index d4d78e4c91..a15061b267 100644 --- a/quantum/template/template.h +++ b/quantum/template/template.h @@ -12,7 +12,7 @@ // The second converts the arguments into a two-dimensional array #define KEYMAP( \ k00, k01, k02, \ - k10, k11, \ + k10, k11 \ ) \ { \ { k00, k01, k02 }, \ |