From 97eb52d2e114e9747cc1bb3ae1c336d76bedb723 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Sat, 10 Aug 2019 11:53:29 -0400 Subject: [PATCH] Fix misc typos Found via `codespell -q 3 -L vertexes` --- docs/interlocking.md | 4 ++-- docs/living_hinges.md | 2 +- lasercut/crosspart.py | 2 +- panel/tab.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/interlocking.md b/docs/interlocking.md index ab06ad1..2fa329c 100644 --- a/docs/interlocking.md +++ b/docs/interlocking.md @@ -3,7 +3,7 @@ Interlocking This is the main tool of the LCInterlocking module. It allows to define connections between parts to create tabs and slots. -Parts can come from the Freecad Part/Part Desgin workshops or from the box generator tool of this module for example. To create a connection, the faces must stick. +Parts can come from the Freecad Part/Part Design workshops or from the box generator tool of this module for example. To create a connection, the faces must stick. There are three type of connections : tab, continuous tab and screw.
![Illustration](imgs/interlocking/tab.png)
@@ -49,5 +49,5 @@ Additional Information * Interlocking properties can be edited again clicking on "MultiJoin" group item. * In editing mode, parts and faces can can be visualized by selecting the in the treview of the tools. Then they can be displayed/hidden by tapping in the key "space". * Preview button allow to create a new document with interlocking parts without exiting tool. It's convenient to adjust connection parameters. - * "Add same faces" works as "Add same parts", faces while share te same connection properties. + * "Add same faces" works as "Add same parts", faces while share the same connection properties. diff --git a/docs/living_hinges.md b/docs/living_hinges.md index a468006..7576f45 100644 --- a/docs/living_hinges.md +++ b/docs/living_hinges.md @@ -1,7 +1,7 @@ Living hinges =========== -This tool is used to make curved laser bend surface. Faces of oriented part which follow are flatened and linked with living hinges. Actually curved part must have its radius center equidistant from faces. +This tool is used to make curved laser bend surface. Faces of oriented part which follow are flattened and linked with living hinges. Actually curved part must have its radius center equidistant from faces. Procedure ------------- diff --git a/lasercut/crosspart.py b/lasercut/crosspart.py index 0ca3a08..722cb47 100644 --- a/lasercut/crosspart.py +++ b/lasercut/crosspart.py @@ -316,7 +316,7 @@ def remove_intersections(first_part, second_part, referential_faces, axis, inver # ---------------------------> X # X is the width of part 2. # Y is the width of part 1. -# Z is the heigt of the intersection +# Z is the height of the intersection def make_cross_parts(parts): parts_element = [] for part in parts: diff --git a/panel/tab.py b/panel/tab.py index a38c40b..892efbd 100644 --- a/panel/tab.py +++ b/panel/tab.py @@ -156,7 +156,7 @@ def createWidgetFromTabProperties(self, tab_properties): #elif tab_type == TabProperties.TYPE_FLEX: # widget = TabFlexWidget(tab_properties) else: - raise ValueError("Unkonwn type of tab") + raise ValueError("Unknown type of tab") return widget