ebiten: fixed typo in comment (#3199)

Added a period to the function description, making it easier to read in the IDE hover tooptip.
This commit is contained in:
Arran Tate 2025-02-14 08:05:08 +00:00 committed by GitHub
parent 1fe545611f
commit 68befe41db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.