From 49c2beeca9dce6ccf6a2e08414da8d618cb4ee20 Mon Sep 17 00:00:00 2001 From: faiface Date: Sat, 15 Apr 2017 17:15:12 +0200 Subject: [PATCH] fix typo in xor example code --- examples/xor/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/xor/main.go b/examples/xor/main.go index 6cefb07..77edce0 100644 --- a/examples/xor/main.go +++ b/examples/xor/main.go @@ -28,7 +28,7 @@ func run() { start := time.Now() for !win.Closed() { - // in case window got resized, we also need to resize out canvas + // in case window got resized, we also need to resize our canvas canvas.SetBounds(win.Bounds()) offset := math.Sin(time.Since(start).Seconds()) * 300