Skip to content

Commit a007ada

Browse files
Typos
1 parent 249fbb5 commit a007ada

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fixlayouts.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void ConvertSelectedTextInActiveWindow(HKL hklSource, HKL hklTarget)
8181
// Converts a character from one keyboard layout to another
8282
WCHAR LayoutConvertChar(WCHAR ch, HKL hklSource, HKL hklTarget)
8383
{
84-
// special handling for some ambivalent characters in hebrew layout
84+
// special handling for some ambivalent characters in Hebrew layout
8585
if(LOWORD(hklSource) == MAKELANGID(LANG_HEBREW, SUBLANG_HEBREW_ISRAEL) &&
8686
LOWORD(hklTarget) == MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US))
8787
{

recaps.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ HKL SwitchLayout()
407407
}
408408

409409
///////////////////////////////////////////////////////////////////////////////
410-
// Selects the entire current line and converts it to the current kwyboard layout
410+
// Selects the entire current line and converts it to the current keyboard layout
411411
void SwitchAndConvert(void*)
412412
{
413413
SendKeyCombo(VK_CONTROL, 'A', TRUE);
@@ -440,7 +440,7 @@ LRESULT CALLBACK LowLevelHookProc(int nCode, WPARAM wParam, LPARAM lParam)
440440
else
441441
{
442442
// We start SwitchLayoutAndConvertSelected in another thread since it simulates
443-
// keystrokes to copy and paste the teset which call back into this hook.
443+
// keystrokes to copy and paste the test which call back into this hook.
444444
// That isn't good..
445445
_beginthread(SwitchAndConvert, 0, NULL);
446446
return 1; // prevent windows from handling the keystroke

0 commit comments

Comments
 (0)