From 68befe41dbcda85cc752ff7cb1c25f96b5d4351d Mon Sep 17 00:00:00 2001 From: Arran Tate <66947613+arrannn@users.noreply.github.com> Date: Fri, 14 Feb 2025 08:05:08 +0000 Subject: [PATCH] ebiten: fixed typo in comment (#3199) Added a period to the function description, making it easier to read in the IDE hover tooptip. --- window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.go b/window.go index fa0509f79..0802c117f 100644 --- a/window.go +++ b/window.go @@ -174,7 +174,7 @@ func initializeWindowPositionIfNeeded(width, height int) { // WindowSize returns the window size on desktops. // WindowSize returns (0, 0) on other environments. // -// Even if the application is in fullscreen mode, WindowSize returns the original window size +// Even if the application is in fullscreen mode, WindowSize returns the original window size. // If you need the fullscreen dimensions, see Monitor().Size() instead. // // WindowSize is concurrent-safe.