Skip to content

Commit 798720d

Browse files
Merge pull request #1133 from abhro/md-lists
Fix markdown lists in docstrings
2 parents 9d9c4ac + 411be33 commit 798720d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/ensemble/ensemble_problems.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ EnsembleProblem(prob::AbstractSciMLProblem;
1414
## Positional Arguments
1515
1616
- `prob`: The canonical problem of the ensemble problem. This is the prob that is seeded
17-
into each `prob_func` call to be used as the one that is manipulated/changed for each
18-
run of the ensemble.
17+
into each `prob_func` call to be used as the one that is manipulated/changed for each
18+
run of the ensemble.
1919
2020
## Keyword Arguments
2121
@@ -103,12 +103,12 @@ Each field controls how the ensemble behaves during simulation.
103103
104104
## Arguments
105105
106-
- `prob`: The original base problem to replicate or modify.
107-
- `prob_func`: A function that defines how to generate each subproblem.
108-
- `output_func`: A function to post-process each individual simulation result.
109-
- `reduction`: A function to combine results from all simulations.
110-
- `u_init`: The initial container used to accumulate the results.
111-
- `safetycopy`: Whether to copy the problem when creating subproblems (to avoid unintended modifications).
106+
- `prob`: The original base problem to replicate or modify.
107+
- `prob_func`: A function that defines how to generate each subproblem.
108+
- `output_func`: A function to post-process each individual simulation result.
109+
- `reduction`: A function to combine results from all simulations.
110+
- `u_init`: The initial container used to accumulate the results.
111+
- `safetycopy`: Whether to copy the problem when creating subproblems (to avoid unintended modifications).
112112
"""
113113
struct EnsembleProblem{T, T2, T3, T4, T5} <: AbstractEnsembleProblem
114114
prob::T

0 commit comments

Comments
 (0)