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.
This commit is contained in:
		
							parent
							
								
									2ee961c9e8
								
							
						
					
					
						commit
						f87908228a
					
				
					 4 changed files with 9 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -22,7 +22,7 @@ This section of code is called "The Main Loop" because it's responsible for loop
 | 
			
		|||
    keyboard_task();
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
This 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.
 | 
			
		||||
This 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.
 | 
			
		||||
 | 
			
		||||
Within `keyboard_task()` you'll find code to handle:
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -30,7 +30,7 @@ Within `keyboard_task()` you'll find code to handle:
 | 
			
		|||
* Mouse Handling
 | 
			
		||||
* Serial Link(s)
 | 
			
		||||
* Visualizer
 | 
			
		||||
* Keyboard status LED's (Caps Lock, Num Lock, Scroll Lock)
 | 
			
		||||
* Keyboard status LEDs (Caps Lock, Num Lock, Scroll Lock)
 | 
			
		||||
 | 
			
		||||
#### Matrix Scanning
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -175,7 +175,7 @@ FIXME: This needs to be written
 | 
			
		|||
 | 
			
		||||
FIXME: This needs to be written
 | 
			
		||||
 | 
			
		||||
#### Keyboard state LED's (Caps Lock, Num Lock, Scroll Lock)
 | 
			
		||||
#### Keyboard state LEDs (Caps Lock, Num Lock, Scroll Lock)
 | 
			
		||||
 | 
			
		||||
FIXME: This needs to be written
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue