diff --git a/docs/input.dox b/docs/input.dox index e05223b5..081a2b0c 100644 --- a/docs/input.dox +++ b/docs/input.dox @@ -217,7 +217,7 @@ void character_callback(GLFWwindow* window, unsigned int codepoint) @subsection preedit IME Support All desktop operating systems support IME (Input Method Editor) to input characters -that are not mapped with physical keys. IME have been popular among East Asian people. +that are not mapped with physical keys. IME have been popular among East Asian people. And some operating systems start supporting voice input via IME mechanism. GLFW provides IME support functions to help you implement better text input features. diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 3c19f04b..cb30d687 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -5079,7 +5079,7 @@ GLFWAPI void glfwGetPreeditCursorPos(GLFWwindow* window, int *x, int *y, int *h) /*! @brief Notify the text cursor position to window system to decide the candidate window position. * - * This function teach position hint to decide the candidate window. The candidate window + * This function teach position hint to decide the candidate window. The candidate window * is a part of IME(Input Method Editor) and show several candidate strings. * * Windows systems decide proper position from text cursor geometry. @@ -5258,7 +5258,7 @@ GLFWAPI GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* window, GLFWcharmods * window, which is called when an IME is processing text before committed. * * Callback receives relative position of input cursor inside preedit text and - * attributed text blocks. This callback is used for on-the-spot text editing + * attributed text blocks. This callback is used for on-the-spot text editing * with IME. * * @param[in] window The window whose callback to set.