From 0fce90b8d2a72011d2c410a7e22e28d74d4a8b12 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 20 Apr 2022 18:58:12 -0300 Subject: [PATCH] Fixed typo in out_report --- kibot/out_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/out_report.py b/kibot/out_report.py index 24a73f88..7850bc45 100644 --- a/kibot/out_report.py +++ b/kibot/out_report.py @@ -464,7 +464,7 @@ class ReportOptions(BaseOptions): continue self.pad_drill = min(dr.x, self.pad_drill) self.pad_drill = min(dr.y, self.pad_drill) - # Compute the drill size to get it after platting + # Compute the drill size to get it after plating adjust = 0 if pad.GetAttribute() == npth_attrib else extra_pth_drill self.pad_drill_real = min(dr.x+adjust, self.pad_drill_real) self.pad_drill_real = min(dr.y+adjust, self.pad_drill_real)