From 73abf8a800e30e7f491fa80496890015c4527486 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Wed, 6 Jul 2016 13:06:59 +0200 Subject: [PATCH] Documentation work --- include/GLFW/glfw3.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index bf8b9b80..b6433641 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -2846,7 +2846,7 @@ GLFWAPI void glfwWaitEventsTimeout(double timeout); /*! @brief Posts an empty event to the event queue. * * This function posts an empty event from the current thread to the event - * queue, causing @ref glfwWaitEvents to return. + * queue, causing @ref glfwWaitEvents or @ref glfwWaitEventsTimeout to return. * * If no windows exist, this function returns immediately. For synchronization * of threads in applications that do not create windows, use your threading @@ -2859,6 +2859,7 @@ GLFWAPI void glfwWaitEventsTimeout(double timeout); * * @sa @ref events * @sa glfwWaitEvents + * @sa glfwWaitEventsTimeout * * @since Added in version 3.1. *