diff options
Diffstat (limited to 'lib')
| -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 | ||||
| -rw-r--r-- | lib/lettering/font.py | 2 | ||||
| -rw-r--r-- | lib/threads/catalog.py | 2 | ||||
| -rw-r--r-- | lib/utils/version.py | 2 |
6 files changed, 6 insertions, 6 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. diff --git a/lib/lettering/font.py b/lib/lettering/font.py index 81044853..ff726a56 100644 --- a/lib/lettering/font.py +++ b/lib/lettering/font.py @@ -114,7 +114,7 @@ class Font(object): min_scale = font_metadata('min_scale', 1.0) max_scale = font_metadata('max_scale', 1.0) - # use values from SVG Font, exemple: + # use values from SVG Font, example: # <font horiz-adv-x="45" ... <glyph .... horiz-adv-x="49" glyph-name="A" /> ... <hkern ... k="3"g1="A" g2="B" /> .... /> # Example font.json : "horiz_adv_x": {"A":49}, diff --git a/lib/threads/catalog.py b/lib/threads/catalog.py index c3ccb0c3..c12ca1fe 100644 --- a/lib/threads/catalog.py +++ b/lib/threads/catalog.py @@ -75,7 +75,7 @@ class _ThreadCatalog(Sequence): Scans the catalog of color palettes and chooses one that seems most likely to be the one that the user used. A palette will only be - chosen if more tha 80% of the thread colors in the stitch plan are + chosen if more than 80% of the thread colors in the stitch plan are exact matches for threads in the palette. """ if not self.palettes: diff --git a/lib/utils/version.py b/lib/utils/version.py index 57ef11f0..2186ca23 100644 --- a/lib/utils/version.py +++ b/lib/utils/version.py @@ -18,5 +18,5 @@ def get_inkstitch_version(): with open(version, 'r') as v: inkstitch_version = _("Ink/Stitch Version: %s") % v.readline() else: - inkstitch_version = _("Ink/Stitch Version: unkown") + inkstitch_version = _("Ink/Stitch Version: unknown") return inkstitch_version |
