From 64267399cb95af11f66a2927d71b954011be69f1 Mon Sep 17 00:00:00 2001 From: arrowj <172841+arrowj@users.noreply.github.com> Date: Mon, 23 Jan 2023 05:15:28 -0600 Subject: [PATCH] Update understanding_qmk.md Changed "...4 row by 5 column numpad" to "...5 row by 4 column numpad" on line 46. --- docs/understanding_qmk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/understanding_qmk.md b/docs/understanding_qmk.md index ab7834e24ab1..7b436a45beaa 100644 --- a/docs/understanding_qmk.md +++ b/docs/understanding_qmk.md @@ -43,7 +43,7 @@ While there are different strategies for doing the actual matrix detection, they } ``` -That datastructure is a direct representation of the matrix for a 4 row by 5 column numpad. When a key is pressed that key's position within the matrix will be returned as `1` instead of `0`. +That datastructure is a direct representation of the matrix for a 5 row by 4 column numpad. When a key is pressed that key's position within the matrix will be returned as `1` instead of `0`. Matrix Scanning runs many times per second. The exact rate varies but typically it runs at least 10 times per second to avoid perceptible lag.