From af37bb2f78c39c224c995eb57c757c63034a3d9c Mon Sep 17 00:00:00 2001 From: fauxpark Date: Sat, 9 Dec 2017 16:49:07 +1100 Subject: Fix some of the more obvious typos --- docs/hardware_avr.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/hardware_avr.md') diff --git a/docs/hardware_avr.md b/docs/hardware_avr.md index 8afa80861..c6f3881dc 100644 --- a/docs/hardware_avr.md +++ b/docs/hardware_avr.md @@ -28,7 +28,7 @@ This is where all the custom logic for your keyboard goes. Many keyboards do not ## `.h` -This is the file you define your [Layout Macro(s)](feature_layouts.md) in. At minumum you should have a `#define LAYOUT` for your keyboard that looks something like this: +This is the file you define your [Layout Macro(s)](feature_layouts.md) in. At minimum you should have a `#define LAYOUT` for your keyboard that looks something like this: ``` #define LAYOUT( \ @@ -44,7 +44,7 @@ The first half of the `LAYOUT` pre-processor macro defines the physical arrangem Each of the `k__` variables needs to be unique, and typically they follow the format `k`. -The physical matrix (the second half) must have a number of rows equalling `MATRIX_ROWS`, and each row must have exactly `MATRIX_COLS` elements in it. If you do not have this many physical keys you can use `KC_NO` to fill in the blank spots. +The physical matrix (the second half) must have a number of rows equaling `MATRIX_ROWS`, and each row must have exactly `MATRIX_COLS` elements in it. If you do not have this many physical keys you can use `KC_NO` to fill in the blank spots. ## `config.h` -- cgit v1.2.3-24-g4f1b