Skip to content

Commit 82478ca

Browse files
authored
Merge pull request #102 from innerlee/patch-1
Fix typo in example code in documentation.
2 parents ef70d97 + 4107553 commit 82478ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/jump.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Our [JuMP](https://github.com/JuliaOpt/JuMP.jl/) interface allows you to describ
77
## Use COSMO
88
To specify COSMO as the solver for your JuMP model, load the solver module with `using COSMO` and then use the `with_optimizer()` function when initialising the JuMP model:
99
```julia
10-
m = JuMP.Model(with_optimizer(COSMO.Optimizer);
10+
m = JuMP.Model(with_optimizer(COSMO.Optimizer));
1111
```
1212

1313
## Specify Solver Settings
@@ -31,4 +31,4 @@ and the value of a decision variable `x` can be obtained with
3131
```julia
3232
JuMP.value.(x)
3333
```
34-
For more information on how to use JuMP check the [JuMP documentation](http://www.juliaopt.org/JuMP.jl/stable/).
34+
For more information on how to use JuMP check the [JuMP documentation](http://www.juliaopt.org/JuMP.jl/stable/).

0 commit comments

Comments
 (0)