aboutsummaryrefslogtreecommitdiff
path: root/docs/understanding_qmk.md
diff options
context:
space:
mode:
authorMax Rumpf <max.rumpf1998@gmail.com>2019-10-22 14:47:43 +0200
committerJoel Challis <git@zvecr.com>2019-10-22 13:47:43 +0100
commitf87908228ab0bcd5302feb5701443b8af708d947 (patch)
tree9b3acee8c5d1f1056f1ce55172f883c59e5bf47e /docs/understanding_qmk.md
parent2ee961c9e873d577e711431ae0960aa21629525e (diff)
downloadqmk_firmware-f87908228ab0bcd5302feb5701443b8af708d947.tar.gz
qmk_firmware-f87908228ab0bcd5302feb5701443b8af708d947.zip
Remove apostrophe from various abbreviations' plural forms (#7050)
While this was historically a valid possibility, nowadays, it reads kinda weird, and the [Oxford Dictionaries Online suggests to avoid it](https://english.stackexchange.com/a/56010). Thus, I removed it everywhere I found it.
Diffstat (limited to 'docs/understanding_qmk.md')
-rw-r--r--docs/understanding_qmk.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/understanding_qmk.md b/docs/understanding_qmk.md
index a94c9c319..81cedfcf5 100644
--- a/docs/understanding_qmk.md
+++ b/docs/understanding_qmk.md
@@ -22,7 +22,7 @@ This section of code is called "The Main Loop" because it's responsible for loop
22 keyboard_task(); 22 keyboard_task();
23``` 23```
24 24
25This is where all the keyboard specific functionality is dispatched. The source code for `keyboard_task()` can be found in [tmk_core/common/keyboard.c](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/tmk_core/common/keyboard.c#L216), and it is responsible for detecting changes in the matrix and turning status LED's on and off. 25This is where all the keyboard specific functionality is dispatched. The source code for `keyboard_task()` can be found in [tmk_core/common/keyboard.c](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/tmk_core/common/keyboard.c#L216), and it is responsible for detecting changes in the matrix and turning status LEDs on and off.
26 26
27Within `keyboard_task()` you'll find code to handle: 27Within `keyboard_task()` you'll find code to handle:
28 28
@@ -30,7 +30,7 @@ Within `keyboard_task()` you'll find code to handle:
30* Mouse Handling 30* Mouse Handling
31* Serial Link(s) 31* Serial Link(s)
32* Visualizer 32* Visualizer
33* Keyboard status LED's (Caps Lock, Num Lock, Scroll Lock) 33* Keyboard status LEDs (Caps Lock, Num Lock, Scroll Lock)
34 34
35#### Matrix Scanning 35#### Matrix Scanning
36 36
@@ -175,7 +175,7 @@ FIXME: This needs to be written
175 175
176FIXME: This needs to be written 176FIXME: This needs to be written
177 177
178#### Keyboard state LED's (Caps Lock, Num Lock, Scroll Lock) 178#### Keyboard state LEDs (Caps Lock, Num Lock, Scroll Lock)
179 179
180FIXME: This needs to be written 180FIXME: This needs to be written
181 181