From c7dcaa40a2b92b24d85307649463957eff93ae4e Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Thu, 30 Jun 2016 11:40:42 +0200 Subject: [PATCH] Fix typo --- boxes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/__init__.py b/boxes/__init__.py index 1ef64d7..f9dc08d 100755 --- a/boxes/__init__.py +++ b/boxes/__init__.py @@ -501,7 +501,7 @@ class Boxes: self.edge((length-d)/2.0) def edgeCorner(self, edge1, edge2, angle=90): - """Make a corner between two Edges. Take widht of edges into account""" + """Make a corner between two Edges. Take width of edges into account""" self.edge(edge2.startwidth()/math.sin(math.radians(180-angle))) self.corner(angle) self.edge(edge1.endwidth()/math.sin(math.radians(180-angle)))