Skip to content

Commit 4095830

Browse files
myclevornamemateoconlechuga
authored andcommitted
Change capitalizations and wording of keypadc docs
Besides capitalization, the only change was 'Helpful key detection' -> 'Key Detection'
1 parent 20370c6 commit 4095830

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/libraries/keypadc.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ It supports multi-key presses, and can be used for extremely responsive input co
1313
.. contents:: :local:
1414
:depth: 3
1515

16-
Helpful key detection
16+
Key Detection
1717
-------------------
1818

1919
Handling key detection properly is a major requirement for a lot of programs.
2020
Detecting a hold can be rather straightforward, but things like a press, release, can sometimes be rather confusing at first.
2121

22-
Detecting a single press
22+
Detecting a Single Press
2323
^^^^^^^^^^^^^^^^^^^^^^^^
2424

2525
When a key is first pressed, we only want to trigger on that event.
@@ -35,7 +35,7 @@ The following code sets up a simple rising edge detector to catch this.
3535
}
3636
prevkey = key;
3737
38-
Detecting a single release
38+
Detecting a Single Release
3939
^^^^^^^^^^^^^^^^^^^^^^^^^^
4040

4141
When a key is released we only want to trigger on that event.
@@ -51,7 +51,7 @@ The following code sets up a simple falling edge detector to catch this.
5151
}
5252
prevkey = key;
5353
54-
Getting GetCSC codes with keypadc
54+
Getting GetCSC Codes with keypadc
5555
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5656

5757
This code returns the same keycodes that `os_GetCSC()` produces.

0 commit comments

Comments
 (0)