Skip to content

Commit

Permalink
Fixed missing tic in docstring (#608)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jonniedie authored Jan 21, 2022
1 parent 5d009b8 commit 04cef38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeresp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 04cef38

Please sign in to comment.