From 563eafc6f2f02266c9bdf332107a3c67a91ab7a8 Mon Sep 17 00:00:00 2001 From: Jonnie Diegelman <47193959+jonniedie@users.noreply.github.com> Date: Fri, 21 Jan 2022 10:51:58 -0500 Subject: [PATCH] Fixed missing tic in docstring Sorry if this is too minor issue to really deserve a pr, but it makes the docstring print in a funky way in the REPL. --- src/timeresp.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeresp.jl b/src/timeresp.jl index b820d8ec0..38798a4d8 100644 --- a/src/timeresp.jl +++ b/src/timeresp.jl @@ -85,7 +85,7 @@ The result structure contains the fields `y, t, x, u` and can be destructured au ```julia y, t, x, u = result ``` -`y, `x`, `u` have time in the second dimension. Initial state `x0` defaults to zero. +`y`, `x`, `u` have time in the second dimension. Initial state `x0` defaults to zero. Continuous time systems are simulated using an ODE solver if `u` is a function. If `u` is an array, the system is discretized (with `method=:zoh` by default) before simulation. For a lower level inteface, see `?Simulator` and `?solve`