Skip to content

Commit d4b5eec

Browse files
authored
Merge pull request #1044 from sethfischer/fix-typo
Fix typo "wokrplane" -> "workplane"
2 parents 3f6da6d + 072d0ae commit d4b5eec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cadquery/occ_impl/exporters/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ def export(
4343
):
4444

4545
"""
46-
Export Wokrplane or Shape to file. Multiple entities are converted to compound.
46+
Export Workplane or Shape to file. Multiple entities are converted to compound.
4747
48-
:param w: Shape or Wokrplane to be exported.
48+
:param w: Shape or Workplane to be exported.
4949
:param fname: output filename.
5050
:param exportType: the exportFormat to use. If None will be inferred from the extension. Default: None.
5151
:param tolerance: the deflection tolerance, in model units. Default 0.1.

examples/Ex014_Offset_Workplanes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
result = cq.Workplane("front").box(3, 2, 0.5)
99

1010
# 3. The lowest face in the X direction is selected with the <X selector.
11-
# 4. A new wokrplane is created
11+
# 4. A new workplane is created
1212
# 4a.The workplane is offset from the object surface so that it is not touching
1313
# the original box.
1414
result = result.faces("<X").workplane(offset=0.75)

0 commit comments

Comments
 (0)