Skip to content

Commit 85db622

Browse files
committed
minor doc tweaks
1 parent bf7c3c6 commit 85db622

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/src/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ The package currently supports quadratic-plus-separable problems of the form
1414
```
1515

1616
where:
17-
* ``\LaTeX``
1817
* ``x \in \bf R^n`` is the decision variable
1918
* ``A \in \bf R^{m\times n}`` is a sparse matrix
2019
* ``b \in \bf R^m``
@@ -82,9 +81,9 @@ settings = Settings(; ρ=ones(m), σ=ones(n), compute_stats=true)
8281
8382
vars, stats = optimize(params, settings)
8483
85-
print("optimal x: ", vars.x)
86-
print("final obj: ", stats.obj[stats.iters])
87-
print("final res: ", stats.res[stats.iters])
84+
println("optimal x: ", vars.x)
85+
println("final obj: ", stats.obj[stats.iters])
86+
println("final res: ", stats.res[stats.iters])
8887
```
8988

9089
## Authors

0 commit comments

Comments
 (0)