From f95a13780cb801f446d29c161c699655dffbc8c2 Mon Sep 17 00:00:00 2001 From: rahiel Date: Mon, 26 May 2014 15:39:37 +0200 Subject: [PATCH] small error in comment --- examples/animation/double_pendulum_animated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/animation/double_pendulum_animated.py b/examples/animation/double_pendulum_animated.py index c08893809d28..cae06d64cf1c 100644 --- a/examples/animation/double_pendulum_animated.py +++ b/examples/animation/double_pendulum_animated.py @@ -35,7 +35,7 @@ def derivs(state, t): return dydx -# create a time array from 0..100 sampled at 0.1 second steps +# create a time array from 0..100 sampled at 0.05 second steps dt = 0.05 t = np.arange(0.0, 20, dt)