Skip to content

Commit 2ed3f18

Browse files
committed
Fixed doc typo
1 parent 4ba1430 commit 2ed3f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas/geometry/primitives/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Frame(Primitive):
6565
>>> from compas.geometry import Point
6666
>>> from compas.geometry import Vector
6767
>>> f = Frame([0, 0, 0], [1, 0, 0], [0, 1, 0])
68-
>>> f = Frame(Point(0, 0, 0), Vector(1, 0, 0), Point(0, 1, 0))
68+
>>> f = Frame(Point(0, 0, 0), Vector(1, 0, 0), Vector(0, 1, 0))
6969
"""
7070

7171
def __init__(self, point, xaxis, yaxis):

0 commit comments

Comments
 (0)