From b6fa2aae6e9b0793280139ad7e5edd2468eac494 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 19 Jun 2022 02:40:02 -0700 Subject: [PATCH] typos --- help.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/help.lua b/help.lua index 1316304..18810e2 100644 --- a/help.lua +++ b/help.lua @@ -83,7 +83,7 @@ function draw_help_with_mouse_pressed(drawing) else love.graphics.print('* Release the mouse button to finish drawing the rectangle', Margin_left+30,y) y = y + Line_height - love.graphics.print("* Press 'p' to replace the second vertext of the rectangle", Margin_left+30,y) + love.graphics.print("* Press 'p' to replace the second vertex of the rectangle", Margin_left+30,y) y = y + Line_height end elseif Current_drawing_mode == 'square' then @@ -93,7 +93,7 @@ function draw_help_with_mouse_pressed(drawing) else love.graphics.print('* Release the mouse button to finish drawing the square', Margin_left+30,y) y = y + Line_height - love.graphics.print("* Press 'p' to replace the second vertext of the square", Margin_left+30,y) + love.graphics.print("* Press 'p' to replace the second vertex of the square", Margin_left+30,y) y = y + Line_height end end