Skip to content

Commit

Permalink
Fix incorrect ParallelDirSelector documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
revolter authored Aug 16, 2021
1 parent 93623fa commit c0efdc0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cadquery/selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class ParallelDirSelector(BaseDirSelector):
CQ(aCube).faces(ParallelDirSelector((0, 0, 1))
selects faces with a normals in the z direction, and is equivalent to::
selects faces with the normal parallel to the z direction, and is equivalent to::
CQ(aCube).faces("|Z")
"""
Expand All @@ -237,7 +237,7 @@ class DirectionSelector(BaseDirSelector):
CQ(aCube).faces(DirectionSelector((0, 0, 1))
selects faces with a normals in the z direction, and is equivalent to::
selects faces with the normal in the z direction, and is equivalent to::
CQ(aCube).faces("+Z")
"""
Expand All @@ -261,7 +261,7 @@ class PerpendicularDirSelector(BaseDirSelector):
CQ(aCube).faces(PerpendicularDirSelector((0, 0, 1))
selects faces with a normals perpendicular to the z direction, and is equivalent to::
selects faces with the normal perpendicular to the z direction, and is equivalent to::
CQ(aCube).faces("#Z")
"""
Expand Down

0 comments on commit c0efdc0

Please sign in to comment.