diff options
| author | luzpaz <luzpaz@users.noreply.github.com> | 2021-07-29 14:52:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-29 20:52:44 +0200 |
| commit | e6fad808e9459ed6211c5ee04f3f1a00b786fa7a (patch) | |
| tree | 57a137a445bda8c91fa9b6854f21ca0b8f8822f1 /lib/elements | |
| parent | 2161379b55be2aab0d639df2f2b7124b1544789f (diff) | |
Fix typos (#1291)
Diffstat (limited to 'lib/elements')
| -rw-r--r-- | lib/elements/element.py | 2 | ||||
| -rw-r--r-- | lib/elements/satin_column.py | 2 | ||||
| -rw-r--r-- | lib/elements/stroke.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/elements/element.py b/lib/elements/element.py index 670b05d8..0b001f0b 100644 --- a/lib/elements/element.py +++ b/lib/elements/element.py @@ -93,7 +93,7 @@ class EmbroideryElement(object): elif legacy_tie == "False": self.set_param('ties', 3) - # defaut setting for fill_underlay has changed + # default setting for fill_underlay has changed if legacy_attribs and not self.get_param('fill_underlay', ""): self.set_param('fill_underlay', False) diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index 778fc88a..d72680b7 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.py @@ -779,7 +779,7 @@ class SatinColumn(EmbroideryElement): sides = self.plot_points_on_rails(self.zigzag_spacing, self.pull_compensation) # "left" and "right" here are kind of arbitrary designations meaning - # a point from the first and second rail repectively + # a point from the first and second rail respectively for left, right in zip(*sides): patch.add_stitch(left) patch.add_stitch(right) diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py index cf034d21..39a8f6e3 100644 --- a/lib/elements/stroke.py +++ b/lib/elements/stroke.py @@ -132,7 +132,7 @@ class Stroke(EmbroideryElement): # want to see if they set a running stitch length at all, and the property will apply # a default value. # - # Thsi is so tricky, and and intricate that's a major reason that we deprecated the + # This is so tricky, and and intricate that's a major reason that we deprecated the # 0.5 units rule. # Warn them the first time. |
