From 65ac0693bb72b6cc6b1fb687533528833a361184 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 22 Nov 2023 09:51:41 +1300 Subject: [PATCH] Update docs/src/manual/nonlinear.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: BenoƮt Legat --- docs/src/manual/nonlinear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/manual/nonlinear.md b/docs/src/manual/nonlinear.md index 5b14a1876e9..12a6d15012e 100644 --- a/docs/src/manual/nonlinear.md +++ b/docs/src/manual/nonlinear.md @@ -556,7 +556,7 @@ f(x::Vector) = sum(x[i]^i for i in 1:length(x)) @objective(model, Min, op_f(x...)) ``` -If the operator takes several vector inputs, write a function which takes the +If the operator takes several vector inputs, write a function that takes the splatted arguments and reconstructs the required vector inputs: ```@repl using JuMP