diff options
author | fauxpark <fauxpark@gmail.com> | 2017-12-09 16:36:32 +1100 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-12-09 10:46:11 -0500 |
commit | 7b0356d1d49da6574570e110f61f95692afdb3d0 (patch) | |
tree | a3e70802085ea8089f1e7851529f0296247fa264 /docs/feature_tap_dance.md | |
parent | 6eb89ae906db7f226570e1839b88dcdd3a8fa962 (diff) | |
download | firmware-7b0356d1d49da6574570e110f61f95692afdb3d0.tar.gz firmware-7b0356d1d49da6574570e110f61f95692afdb3d0.tar.bz2 firmware-7b0356d1d49da6574570e110f61f95692afdb3d0.zip |
Convert all headings to Title Case
Diffstat (limited to 'docs/feature_tap_dance.md')
-rw-r--r-- | docs/feature_tap_dance.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/feature_tap_dance.md b/docs/feature_tap_dance.md index 24cd2b440..57bbde6ea 100644 --- a/docs/feature_tap_dance.md +++ b/docs/feature_tap_dance.md @@ -1,4 +1,4 @@ -# Tap Dance: A single key can do 3, 5, or 100 different things +# Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things <!-- FIXME: Break this up into multiple sections --> @@ -78,7 +78,7 @@ enum { X_TAP_DANCE }; ``` -### Example 1: Send `:` on single tap, `;` on double tap +### Example 1: Send `:` on Single Tap, `;` on Double Tap ```c void dance_cln_finished (qk_tap_dance_state_t *state, void *user_data) { if (state->count == 1) { @@ -103,7 +103,7 @@ qk_tap_dance_action_t tap_dance_actions[] = { [CT_CLN] = ACTION_TAP_DANCE_FN_ADVANCED (NULL, dance_cln_finished, dance_cln_reset) }; ``` -### Example 2: Send "Safety Dance!" after 100 taps +### Example 2: Send "Safety Dance!" After 100 Taps ```c void dance_egg (qk_tap_dance_state_t *state, void *user_data) { if (state->count >= 100) { @@ -117,7 +117,7 @@ qk_tap_dance_action_t tap_dance_actions[] = { }; ``` -### Example 3: Turn LED lights on then off, one at a time +### Example 3: Turn LED Lights On Then Off, One at a Time ```c // on each tap, light up one led, from right to left |