Skip to content

Commit

Permalink
Correct some comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
j4james committed Jan 1, 2024
1 parent e320e9f commit fa0587b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/terminal/input/terminalInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ try
_keyMap.clear();

// PAUSE doesn't have a VT mapping, but traditionally we've mapped it to ^Z,
// regardless of modifiers. This key is only supported in conhost.
// regardless of modifiers.
defineKeyWithUnusedModifiers(VK_PAUSE, L"\x1A"s);

// BACKSPACE maps to either DEL or BS, depending on the Backarrow Key mode.
Expand Down Expand Up @@ -435,8 +435,8 @@ try

// Keypad keys depend on the Keypad mode. When reset, they transmit
// the ASCII character assigned by the keyboard layout, but when set
// they transmit SS3 escape sequences. When used with a modifier they,
// the modifier is embedded as a parameter value (not standard).
// they transmit SS3 escape sequences. When used with a modifier, the
// modifier is embedded as a parameter value (not standard).
if (_inputMode.test(Mode::Keypad))
{
defineNumericKey(VK_MULTIPLY, L'j');
Expand Down

0 comments on commit fa0587b

Please sign in to comment.