Skip to content

Commit 55366ea

Browse files
committed
Fix docstring in eval_tree_array
1 parent 2ed8c53 commit 55366ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/eval.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The notation is the same for `eval_tree_array`, though it will return `nothing`
3232
when it can't find a method, and not do any NaN checks:
3333

3434
```@docs
35-
eval_tree_array(tree, cX::AbstractArray, operators::GenericOperatorEnum)
35+
eval_tree_array(tree, cX::AbstractArray, operators::GenericOperatorEnum; throw_errors::Bool=true)
3636
```
3737

3838
## Derivatives

src/EvaluateEquation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ function deg2_diff_eval(
473473
end
474474

475475
"""
476-
eval_tree_array(tree::Node, cX::AbstractMatrix, operators::GenericOperatorEnum)
476+
eval_tree_array(tree::Node, cX::AbstractMatrix, operators::GenericOperatorEnum; throw_errors::Bool=true)
477477
478478
Evaluate a generic binary tree (equation) over a given input data,
479479
whatever that input data may be. The `operators` enum contains all

0 commit comments

Comments
 (0)