From e712951f2d55d9dffed53573d7b73ba9d8c69ceb Mon Sep 17 00:00:00 2001 From: Kausik SS Date: Tue, 24 Aug 2021 10:44:24 +0530 Subject: [PATCH] Typo fix in UpdatersExample --- docs/source/getting_started/example_scenes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting_started/example_scenes.rst b/docs/source/getting_started/example_scenes.rst index ec0ffe7b..7df94b64 100644 --- a/docs/source/getting_started/example_scenes.rst +++ b/docs/source/getting_started/example_scenes.rst @@ -335,7 +335,7 @@ UpdatersExample # If the argument itself might change, you can use f_always, # for which the arguments following the initial Mobject method # should be functions returning arguments to that method. - # The following line ensures thst decimal.set_value(square.get_y()) + # The following line ensures that decimal.set_value(square.get_y()) # is called every frame f_always(number.set_value, square.get_width) # You could also write the following equivalent line