Skip to content

Commit c0efdc0

Browse files
authored
Fix incorrect ParallelDirSelector documentation
1 parent 93623fa commit c0efdc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cadquery/selectors.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class ParallelDirSelector(BaseDirSelector):
214214
215215
CQ(aCube).faces(ParallelDirSelector((0, 0, 1))
216216
217-
selects faces with a normals in the z direction, and is equivalent to::
217+
selects faces with the normal parallel to the z direction, and is equivalent to::
218218
219219
CQ(aCube).faces("|Z")
220220
"""
@@ -237,7 +237,7 @@ class DirectionSelector(BaseDirSelector):
237237
238238
CQ(aCube).faces(DirectionSelector((0, 0, 1))
239239
240-
selects faces with a normals in the z direction, and is equivalent to::
240+
selects faces with the normal in the z direction, and is equivalent to::
241241
242242
CQ(aCube).faces("+Z")
243243
"""
@@ -261,7 +261,7 @@ class PerpendicularDirSelector(BaseDirSelector):
261261
262262
CQ(aCube).faces(PerpendicularDirSelector((0, 0, 1))
263263
264-
selects faces with a normals perpendicular to the z direction, and is equivalent to::
264+
selects faces with the normal perpendicular to the z direction, and is equivalent to::
265265
266266
CQ(aCube).faces("#Z")
267267
"""

0 commit comments

Comments
 (0)