summaryrefslogtreecommitdiffstats
path: root/docs/feature_stenography.md
diff options
context:
space:
mode:
authorprecondition <57645186+precondition@users.noreply.github.com>2022-07-29 06:51:01 +0200
committerGitHub <noreply@github.com>2022-07-28 21:51:01 -0700
commit95c1cc425e596ddcfff7bebd678635fea7ffbcdc (patch)
tree69d41f347d2544dcd82c34312ed32e8751402481 /docs/feature_stenography.md
parent2d0443ec2579c2634bf0a1f00214d0c1a221ad64 (diff)
Rename postprocess_steno_user → post_process_steno_user (#17823)
Diffstat (limited to 'docs/feature_stenography.md')
-rw-r--r--docs/feature_stenography.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_stenography.md b/docs/feature_stenography.md
index e13fe845c5..62d4dabf81 100644
--- a/docs/feature_stenography.md
+++ b/docs/feature_stenography.md
@@ -133,7 +133,7 @@ bool process_steno_user(uint16_t keycode, keyrecord_t *record) { return true; }
This function is called when a keypress has come in, before it is processed. The keycode should be one of `QK_STENO_BOLT`, `QK_STENO_GEMINI`, or one of the `STN_*` key values.
```c
-bool postprocess_steno_user(uint16_t keycode, keyrecord_t *record, steno_mode_t mode, uint8_t chord[MAX_STROKE_SIZE], int8_t n_pressed_keys);
+bool post_process_steno_user(uint16_t keycode, keyrecord_t *record, steno_mode_t mode, uint8_t chord[MAX_STROKE_SIZE], int8_t n_pressed_keys);
```
This function is called after a key has been processed, but before any decision about whether or not to send a chord. This is where to put hooks for things like, say, live displays of steno chords or keys.