From 949c1833f44739bc82132512f701d7955fba3ad7 Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Mon, 20 Aug 2018 19:05:15 +0100 Subject: [PATCH] Minor typo fix --- examples/core/mouse_wheel/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/core/mouse_wheel/main.go b/examples/core/mouse_wheel/main.go index d8e66fa..f39026b 100644 --- a/examples/core/mouse_wheel/main.go +++ b/examples/core/mouse_wheel/main.go @@ -26,7 +26,7 @@ func main() { raylib.DrawRectangle(screenWidth/2-40, boxPositionY, 80, 80, raylib.Maroon) - raylib.DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, raylib.Gray) + raylib.DrawText("Use mouse wheel to move the square up and down!", 10, 10, 20, raylib.Gray) raylib.DrawText(fmt.Sprintf("Box position Y: %d", boxPositionY), 10, 40, 20, raylib.LightGray) raylib.EndDrawing()