Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-08-02 08:22:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-02 08:22:54 +0300
commit1cf45fe10f7f99905343012798be6dbac51c3384 (patch)
tree0ba221ab4a1d54efc10fac97d7e5755ae72186e0 /intern
parent836aeebf70776791866c8cc82a0ca2ad7ffb8e4d (diff)
Cleanup: spelling
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_ImeWin32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_ImeWin32.cpp b/intern/ghost/intern/GHOST_ImeWin32.cpp
index 412f7e4276c..8daa07b5003 100644
--- a/intern/ghost/intern/GHOST_ImeWin32.cpp
+++ b/intern/ghost/intern/GHOST_ImeWin32.cpp
@@ -94,7 +94,7 @@ bool GHOST_ImeWin32::IsEnglishMode()
bool GHOST_ImeWin32::IsImeKeyEvent(char ascii)
{
if (!(IsEnglishMode())) {
- /* In Chinese, Japanese, Korena, all alpha keys are processed by IME. */
+ /* In Chinese, Japanese, Korean, all alpha keys are processed by IME. */
if ((ascii >= 'A' && ascii <= 'Z') || (ascii >= 'a' && ascii <= 'z')) {
return true;
}