From ed7f009859736cf7dd2699f5fbed2b00d8349641 Mon Sep 17 00:00:00 2001 From: Stefan Vujadinovic <59982660+vujadinovic@users.noreply.github.com> Date: Mon, 26 Jan 2026 15:19:14 +0100 Subject: [PATCH] DOCS: Fix typo in time array step size comment The code uses dt=0.01 as time step but the comment said 0.02 --- galleries/examples/animation/double_pendulum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/examples/animation/double_pendulum.py b/galleries/examples/animation/double_pendulum.py index 7a42a6d989ba..76076341d5c2 100644 --- a/galleries/examples/animation/double_pendulum.py +++ b/galleries/examples/animation/double_pendulum.py @@ -51,7 +51,7 @@ def derivs(t, state): return dydx -# create a time array from 0..t_stop sampled at 0.02 second steps +# create a time array from 0..t_stop sampled at 0.01 second steps dt = 0.01 t = np.arange(0, t_stop, dt)