Doc: Fix spaces

This commit is contained in:
Daijiro Fukuda 2022-05-24 11:30:43 +09:00
parent b061c0fabc
commit 18927b7af0
2 changed files with 3 additions and 3 deletions

View File

@ -217,7 +217,7 @@ void character_callback(GLFWwindow* window, unsigned int codepoint)
@subsection preedit IME Support @subsection preedit IME Support
All desktop operating systems support IME (Input Method Editor) to input characters 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. And some operating systems start supporting voice input via IME mechanism.
GLFW provides IME support functions to help you implement better text input features. GLFW provides IME support functions to help you implement better text input features.

View File

@ -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. /*! @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. * is a part of IME(Input Method Editor) and show several candidate strings.
* *
* Windows systems decide proper position from text cursor geometry. * 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. * window, which is called when an IME is processing text before committed.
* *
* Callback receives relative position of input cursor inside preedit text and * 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. * with IME.
* *
* @param[in] window The window whose callback to set. * @param[in] window The window whose callback to set.