From 853b68fed70ef31d1bb893d89eeea754ce5a4abb Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Fri, 15 Apr 2022 21:14:31 +0900 Subject: [PATCH] Fix docs concerned with input methods to follow others the function signature -> the function pointer type --- include/GLFW/glfw3.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index b4cd6e08..93ac7f9b 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1878,9 +1878,9 @@ typedef void (* GLFWcharfun)(GLFWwindow* window, unsigned int codepoint); */ typedef void (* GLFWcharmodsfun)(GLFWwindow* window, unsigned int codepoint, int mods); -/*! @brief The function signature for preedit callbacks. +/*! @brief The function pointer type for preedit callbacks. * - * This is the function signature for preedit callback functions. + * This is the function pointer type for preedit callback functions. * * @param[in] window The window that received the event. * @param[in] length Preedit string length. @@ -1896,9 +1896,9 @@ typedef void (* GLFWcharmodsfun)(GLFWwindow* window, unsigned int codepoint, int */ typedef void (* GLFWpreeditfun)(GLFWwindow*,int,unsigned int*,int,int*,int); -/*! @brief The function signature for IME status change callbacks. +/*! @brief The function pointer type for IME status change callbacks. * - * This is the function signature for IME status change callback functions. + * This is the function pointer type for IME status change callback functions. * * @param[in] window The window that received the event. *