Some simple typo fixes

This commit is contained in:
Grant Sanderson
2017-05-31 16:07:37 -07:00
parent 2417c06398
commit 37a47b5d3d
11 changed files with 54 additions and 13 deletions

View File

@ -91,7 +91,7 @@ class CyclicReplace(Transform):
start = Group(*mobjects)
target = Group(*[
m1.copy().move_to(m2)
for m1, m2 in adjascent_pairs(start)
for m1, m2 in adjacent_pairs(start)
])
Transform.__init__(self, start, target, **kwargs)