From 4cb6cb9d6aa9e2a0903c5fbb0ee21a88e253c480 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 21 Apr 2021 22:29:54 +0900 Subject: [PATCH] internal/uidriver/glfw: Misspelling --- internal/uidriver/glfw/ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/uidriver/glfw/ui.go b/internal/uidriver/glfw/ui.go index 95ac65fa2..88c02887b 100644 --- a/internal/uidriver/glfw/ui.go +++ b/internal/uidriver/glfw/ui.go @@ -1366,7 +1366,7 @@ func (u *UserInterface) maximizeWindow() { if !u.isFullscreen() { // On Linux/UNIX, maximizing might not finish even though Maximize returns. Just wait for its finish. - // Do not check this on the fullscreen since apparently the condition never be true. + // Do not check this on the fullscreen since apparently the condition can never be true. for u.window.GetAttrib(glfw.Maximized) != glfw.True { glfw.PollEvents() }