From a88deb03b56a2acc18d8ab8f6a1304ad2e275ba3 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 3 Dec 2018 18:25:40 +0100 Subject: [PATCH] Fix misspelling (again) --- examples/highdpi/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/highdpi/main.go b/examples/highdpi/main.go index 962e83dfb..eb82c1864 100644 --- a/examples/highdpi/main.go +++ b/examples/highdpi/main.go @@ -53,7 +53,7 @@ func init() { func update(screen *ebiten.Image) error { // TODO: DeviceScaleFactor() might return different values for different monitors. // Add a mode to adjust the screen size along with the current device scale (#705). - // Now this example uses the device scale initialized at the begining of this application. + // Now this example uses the device scale initialized at the beginning of this application. if highDPIImage == nil { // Use select and 'default' clause for non-blocking receiving.