Skip to content

Commit 14996d7

Browse files
committed
Fix docstring to account for tuples
1 parent 7b73213 commit 14996d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/diffeqs/odesystem.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Generates a function that computes the observed value(s) `ts` in the system `sys
427427
- `checkbounds = true` checks bounds if true when destructuring parameters
428428
- `op = Operator` sets the recursion terminator for the walk done by `vars` to identify the variables that appear in `ts`. See the documentation for `vars` for more detail.
429429
- `throw = true` if true, throw an error when generating a function for `ts` that reference variables that do not exist.
430-
- `mkarray`; only used if the output is an array (that is, `!isscalar(ts)`). Called as `mkarray(ts, output_type)` where `ts` are the expressions to put in
430+
- `mkarray`; only used if the output is an array (that is, `!isscalar(ts)` and `ts` is not a tuple, in which case the result will always be a tuple). Called as `mkarray(ts, output_type)` where `ts` are the expressions to put in
431431
the array and `output_type` is the argument of the same name passed to build_explicit_observed_function.
432432
433433
## Returns

0 commit comments

Comments
 (0)