Skip to content

Commit f1b4742

Browse files
committed
Fixes.
1 parent f3184c8 commit f1b4742

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Prototype/Conceptual/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __deepcopy__(self, memo={}):
105105

106106
deep_copied_component = copy.deepcopy(component)
107107

108-
# Let's change the list in shallow_copied_component and see if it changes in
108+
# Let's change the list in deep_copied_component and see if it changes in
109109
# component.
110110
deep_copied_component.some_list_of_objects.append("another object")
111111
if component.some_list_of_objects[-1] == "another object":

0 commit comments

Comments
 (0)