Skip to content

Commit 0270281

Browse files
committed
More sphnix comment formatting
1 parent 6f34ce7 commit 0270281

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

adafruit_turtle.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,14 @@ class Vec2D(tuple):
7777
for implementing turtle graphics.
7878
May be useful for turtle graphics programs also.
7979
Derived from tuple, so a vector is a tuple!
80-
81-
Provides (for a, b vectors, k number):
82-
a+b vector addition
83-
a-b vector subtraction
84-
a*b inner product
85-
k*a and a*k multiplication with scalar
86-
|a| absolute value of a
87-
a.rotate(angle) rotation
8880
"""
81+
# Provides (for a, b vectors, k number):
82+
# a+b vector addition
83+
# a-b vector subtraction
84+
# a*b inner product
85+
# k*a and a*k multiplication with scalar
86+
# |a| absolute value of a
87+
# a.rotate(angle) rotation
8988
def __init__(self, x, y):
9089
super().__init__((x, y))
9190

0 commit comments

Comments
 (0)