Skip to content

Commit 538f474

Browse files
Update manim/utils/hashing.py
Co-authored-by: kilacoda <[email protected]>
1 parent cc94d6b commit 538f474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim/utils/hashing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _iter_check_list(lst):
112112
# A deepcopy isn't necessary as it is already recursive.
113113
lst_copy = copy.copy(lst)
114114
if isinstance(lst, tuple):
115-
# NOTE : Sometimes a tuple can pass through this function. As a tuple is unmutable, we convert it to a list to be able to modify it.
115+
# NOTE : Sometimes a tuple can pass through this function. As a tuple is immutable, we convert it to a list to be able to modify it.
116116
# It's ok as it's a copy.
117117
lst_copy = list(lst_copy)
118118
for i, el in enumerate(lst):

0 commit comments

Comments
 (0)