Skip to content

Commit 6574548

Browse files
committed
Fix markdown/docstring lists
1 parent 79fb99b commit 6574548

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/debug.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ into the AbstractSciMLProblem (e.x.: ODEProblem) but the parameters object `p` w
4949
expression. Two common reasons for this issue are:
5050
5151
1. Forgetting to pass parameters into the problem constructor. For example, `ODEProblem(f,u0,tspan)` should
52-
be `ODEProblem(f,u0,tspan,p)` in order to use parameters.
52+
be `ODEProblem(f,u0,tspan,p)` in order to use parameters.
5353
5454
2. Using the wrong function signature. For example, with `ODEProblem`s the function signature is always
55-
`f(du,u,p,t)` for the in-place form or `f(u,p,t)` for the out-of-place form. Note that the `p` argument
56-
will always be in the function signature regardless of if the problem is defined with parameters!
55+
`f(du,u,p,t)` for the in-place form or `f(u,p,t)` for the out-of-place form. Note that the `p` argument
56+
will always be in the function signature regardless of if the problem is defined with parameters!
5757
"""
5858

5959
function __init__()

src/problems/problem_utils.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ into the AbstractSciMLProblem (e.x.: ODEProblem) but the parameters object `p` w
149149
expression (e.x. `p[i]`, or `x .+ p`). Two common reasons for this issue are:
150150
151151
1. Forgetting to pass parameters into the problem constructor. For example, `ODEProblem(f,u0,tspan)` should
152-
be `ODEProblem(f,u0,tspan,p)` in order to use parameters.
152+
be `ODEProblem(f,u0,tspan,p)` in order to use parameters.
153153
154154
2. Using the wrong function signature. For example, with `ODEProblem`s the function signature is always
155-
`f(du,u,p,t)` for the in-place form or `f(u,p,t)` for the out-of-place form. Note that the `p` argument
156-
will always be in the function signature regardless of if the problem is defined with parameters!
155+
`f(du,u,p,t)` for the in-place form or `f(u,p,t)` for the out-of-place form. Note that the `p` argument
156+
will always be in the function signature regardless of if the problem is defined with parameters!
157157
"""
158158

159159
struct NullParameterIndexError <: Exception end

0 commit comments

Comments
 (0)