about summary refs log tree commit diff stats
path: root/help.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-19 02:40:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-19 02:40:02 -0700
commitb6fa2aae6e9b0793280139ad7e5edd2468eac494 (patch)
tree4571a83329fc30ea313b7b7428f03cd23037ed1f /help.lua
parent8d4d00d1e19c327ba714b4a872543dfa5260f5b7 (diff)
downloadview.love-b6fa2aae6e9b0793280139ad7e5edd2468eac494.tar.gz
typos
Diffstat (limited to 'help.lua')
-rw-r--r--help.lua4
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