Skip to content

Commit c3ebda8

Browse files
authored
Update vector2.py
1 parent 1f8bf40 commit c3ebda8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3_advanced/chapter13/examples/vector2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __mul__(self, constant):
4343
return Vector([self.vals[i] * constant for i in range(len(self.vals))])
4444

4545
"""
46-
Elementwise subtraction: does the same as addition, just subtraction instead
46+
Elementwise subtraction: does same as addition, just subtraction instead
4747
"""
4848

4949
def __sub__(self, vec):

0 commit comments

Comments
 (0)