From c5bd030084ce2bc37c076603bbf0fbe7e6e41a9d Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Tue, 19 Oct 2021 12:34:06 -0500 Subject: [PATCH] Correct `KeyPair` references in CharShift docs Signed-off-by: Michael Richters --- plugins/Kaleidoscope-CharShift/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/Kaleidoscope-CharShift/README.md b/plugins/Kaleidoscope-CharShift/README.md index 33be359a..8e7ac3ba 100644 --- a/plugins/Kaleidoscope-CharShift/README.md +++ b/plugins/Kaleidoscope-CharShift/README.md @@ -37,10 +37,10 @@ referenced by entries in the keymap. This is easiest to do by using the void setup() { Kaleidoscope.setup(); CS_KEYS( - kaleidoscope::plugin::KeyPair(Key_Comma, Key_Semicolon), // `,`/`;` - kaleidoscope::plugin::KeyPair(Key_Period, LSHIFT(Key_Semicolon)), // `.`/`:` - kaleidoscope::plugin::KeyPair(LSHIFT(Key_9), Key_LeftBracket), // `(`/`[` - kaleidoscope::plugin::KeyPair(LSHIFT(Key_Comma), LSHIFT(Key_LeftBracket)), // `<`/`{` + kaleidoscope::plugin::CharShift::KeyPair(Key_Comma, Key_Semicolon), // `,`/`;` + kaleidoscope::plugin::CharShift::KeyPair(Key_Period, LSHIFT(Key_Semicolon)), // `.`/`:` + kaleidoscope::plugin::CharShift::KeyPair(LSHIFT(Key_9), Key_LeftBracket), // `(`/`[` + kaleidoscope::plugin::CharShift::KeyPair(LSHIFT(Key_Comma), LSHIFT(Key_LeftBracket)), // `<`/`{` ); } ```