Skip to content

Commit 833252b

Browse files
authored
Update vector.py
1 parent 8421b8a commit 833252b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3_advanced/chapter13/examples/vector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Vector:
77
"""
88

99
def __init__(self, vals):
10-
self.vals = vals # Notice! We are using the keyword self to create a field or property (for Javascript users)
10+
self.vals = vals # We're using the keyword self to create a field/property
1111
print("Assigned values ", vals, " to vector.")
1212

1313
"""

0 commit comments

Comments
 (0)