diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-06-19 02:40:02 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-06-19 02:40:02 -0700 |
commit | b6fa2aae6e9b0793280139ad7e5edd2468eac494 (patch) | |
tree | 4571a83329fc30ea313b7b7428f03cd23037ed1f | |
parent | 8d4d00d1e19c327ba714b4a872543dfa5260f5b7 (diff) | |
download | text.love-b6fa2aae6e9b0793280139ad7e5edd2468eac494.tar.gz |
typos
-rw-r--r-- | help.lua | 4 |
1 files 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 |