From b04a1166200587def2354cf2040fdbe9e7f52345 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Wed, 21 Dec 2022 15:04:40 +0000 Subject: [PATCH] Update docs/guide/input.md Co-authored-by: darrenburns --- docs/guide/input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/input.md b/docs/guide/input.md index 9c03815f7..a966f8c68 100644 --- a/docs/guide/input.md +++ b/docs/guide/input.md @@ -55,7 +55,7 @@ For example the ++p++ key will produce `character="p"` but ++f2++ will produce ` The `name` attribute is similar to `key` but, unlike `key`, is guaranteed to be valid within a Python function name. Textual derives `name` from the `key` attribute by lower casing it and replacing `+` with `_`. Upper case letters are prefixed with `upper_` to distinguish them from lower case names. -For example, ++ctrl+q++ produces `name="ctrl_p"` and ++shift+p++ produces `name="upper_p"`. +For example, ++ctrl+p++ produces `name="ctrl_p"` and ++shift+p++ produces `name="upper_p"`. #### is_printable