From f49e2fd104ed8aa8959ba3ae969551fda4251c1a Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 25 May 2022 17:07:06 -0700 Subject: [PATCH] typos --- file.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file.lua b/file.lua index ced2a04..0ce1b8e 100644 --- a/file.lua +++ b/file.lua @@ -66,7 +66,7 @@ function load_drawing(infile_next_line) elseif shape.mode == 'circle' or shape.mode == 'arc' then local name = shape.center.name shape.center = Drawing.insert_point(drawing.points, shape.center.x,shape.center.y) - drawing.point[shape.center].name = name + drawing.points[shape.center].name = name else print(shape.mode) assert(false) @@ -155,7 +155,7 @@ function load_drawing_from_array(iter, a, i) elseif shape.mode == 'circle' or shape.mode == 'arc' then local name = shape.center.name shape.center = Drawing.insert_point(drawing.points, shape.center.x,shape.center.y) - drawing.point[shape.center].name = name + drawing.points[shape.center].name = name else print(shape.mode) assert(false)