From 0fc23139c7b7644ff04d1ae7a7ee2c266a4e100c Mon Sep 17 00:00:00 2001 From: lipx <120847863+lipx1508@users.noreply.github.com> Date: Fri, 8 Dec 2023 22:05:03 -0300 Subject: [PATCH] Fix typo (?) on core_window_should_close.c minor spelling mistake detected --- examples/core/core_window_should_close.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/core/core_window_should_close.c b/examples/core/core_window_should_close.c index f0392b013..014720cc8 100644 --- a/examples/core/core_window_should_close.c +++ b/examples/core/core_window_should_close.c @@ -60,7 +60,7 @@ int main() if (exitWindowRequested) { DrawRectangle(0, 100, screenWidth, 200, BLACK); - DrawText("Are you sure you want to exit program? [Y/N]", 40, 180, 30, WHITE); + DrawText("Are you sure you want to quit? [Y/N]", 40, 180, 30, WHITE); } else DrawText("Try to close the window to get confirmation message!", 120, 200, 20, LIGHTGRAY);