From 7b0356d1d49da6574570e110f61f95692afdb3d0 Mon Sep 17 00:00:00 2001 From: fauxpark Date: Sat, 9 Dec 2017 16:36:32 +1100 Subject: Convert all headings to Title Case --- docs/feature_tap_dance.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/feature_tap_dance.md') diff --git a/docs/feature_tap_dance.md b/docs/feature_tap_dance.md index 24cd2b4407..57bbde6ea2 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 @@ -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 -- cgit v1.2.3