Skip to content

Commit

Permalink
[docs] Remove extra space in explanation (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericphanson committed Dec 12, 2021
1 parent 75b05da commit e8304a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ that does not ensure convexity, the extended formulations are often invalid. As
a simple example, consider the problem

```julia
minimize( abs(x), x >= 1, x <= 2)
minimize(abs(x), x >= 1, x <= 2)
```

Obviously, the optimum occurs at `x=1`, but let us imagine we want to solve this
Expand All @@ -69,7 +69,7 @@ Why? Well, let us consider the same reformulation for a maximization problem.
The original problem is now

```julia
maximize( abs(x), x >= 1, x <= 2)
maximize(abs(x), x >= 1, x <= 2)
```

and trivially the optimum is 2, obtained at `x=2`. If we do the same
Expand Down

0 comments on commit e8304a5

Please sign in to comment.