Skip to content

Commit dd45dc7

Browse files
authored
Update README.md (#60)
Corrected the p=p mistake in the example.
1 parent 562b555 commit dd45dc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
GalacticOptim.jl is a package with a scope that is beyond your normal global optimization
66
package. GalacticOptim.jl seeks to bring together all of the optimization packages
77
it can find, local and global, into one unified Julia interface. This means, you
8-
learn one package and you learn them all! GalacticOptim.jl adds a few high level
8+
learn one package and you learn them all! GalacticOptim.jl adds a few high-level
99
features, such as integrating with automatic differentiation, to make its usage
1010
fairly simple for most cases, while allowing all of the options in a single
1111
unified interface.
1212

13-
#### Note: This package is still in development. The README is currently both an active documentation and development roadmap.
13+
#### Note: This package is still in development. The README is currently both an active documentation and a development roadmap.
1414

1515
## Examples
1616

@@ -36,7 +36,7 @@ unified interface.
3636
```
3737

3838
```julia
39-
prob = OptimizationProblem(f, x0, p = p, lb = [-1.0,-1.0], ub = [1.0,1.0])
39+
prob = OptimizationProblem(f, x0, p, lb = [-1.0,-1.0], ub = [1.0,1.0])
4040
sol = solve(prob, Fminbox(GradientDescent()))
4141
```
4242

0 commit comments

Comments
 (0)