From 506f2f7db75c0924b6222dd6d09689606e4a9178 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Mon, 7 Oct 2019 21:56:37 +0200 Subject: [PATCH] Replace weird character with space In 4c4c6ab0e68c56710f9a1eb07ae8a4d878664ace you added a weird unicode character, which is apparently called an Object Replacement Character, instead of a space. --- glfw/glfw3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/glfw3.h b/glfw/glfw3.h index 2675d3c8b..e21576862 100644 --- a/glfw/glfw3.h +++ b/glfw/glfw3.h @@ -1995,7 +1995,7 @@ GLFWAPI void glfwGetMonitorPos(GLFWmonitor* monitor, int* xpos, int* ypos); * @param[out] xpos Where to store the monitor x-coordinate, or `NULL`. * @param[out] ypos Where to store the monitor y-coordinate, or `NULL`. * @param[out] width Where to store the monitor width, or `NULL`. -* @param[out] height Where to store the monitor height, or `NULL`. + * @param[out] height Where to store the monitor height, or `NULL`. * * @errors Possible errors include @ref GLFW_NOT_INITIALIZED and @ref * GLFW_PLATFORM_ERROR.