From c085096ca5b9a549db2eff9ee4b3a678fa2587cb Mon Sep 17 00:00:00 2001 From: David Stansby Date: Sun, 20 Jan 2019 21:20:15 +0000 Subject: [PATCH] Backport PR #13244: Fix typo --- doc/api/animation_api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/animation_api.rst b/doc/api/animation_api.rst index f99ea7f1d18d..14c7ebf71d7d 100644 --- a/doc/api/animation_api.rst +++ b/doc/api/animation_api.rst @@ -123,7 +123,7 @@ artist at a global scope and let Python sort things out. For example :: init_func=init, blit=True) plt.show() -The second method is to us `functools.partial` to 'bind' artists to +The second method is to use `functools.partial` to 'bind' artists to function. A third method is to use closures to build up the required artists and functions. A fourth method is to create a class.