From 973a3c0b31558b53373816958a9ee4b4c1687f4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Tue, 13 Feb 2024 21:11:29 +0100 Subject: [PATCH] Fix Markdown syntax for link --- docs/moving.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/moving.md b/docs/moving.md index ace4ebdf..44b79479 100644 --- a/docs/moving.md +++ b/docs/moving.md @@ -85,7 +85,7 @@ platform-independent, as both OpenGL and stdio are available wherever GLFW is. ### Removal of GLFWCALL macro {#moving_stdcall} The `GLFWCALL` macro, which made callback functions use -[__stdcall](https://msdn.microsoft.com/en-us/library/zxk0tw93.aspx) on Windows, +[\_\_stdcall](https://msdn.microsoft.com/en-us/library/zxk0tw93.aspx) on Windows, has been removed. GLFW is written in C, not Pascal. Removing this macro means there's one less thing for application programmers to remember, i.e. the requirement to mark all callback functions with `GLFWCALL`. It also simplifies