Skip to content

Commit 3b106e2

Browse files
authored
Fix typos in docstring (#51)
1 parent 7f68017 commit 3b106e2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/stats.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ abstract type AbstractExecutionStats end
6767
A GenericExecutionStats is a struct for storing output information of solvers.
6868
It contains the following fields:
6969
- `status`: Indicates the output of the solver. Use `show_statuses()` for the full list;
70-
- `solution`: The final approximation returned by the solver (default: an uninitialzed vector like `nlp.meta.x0`);
70+
- `solution`: The final approximation returned by the solver (default: an uninitialized vector like `nlp.meta.x0`);
7171
- `objective`: The objective value at `solution` (default: `Inf`);
7272
- `dual_feas`: The dual feasibility norm at `solution` (default: `Inf`);
7373
- `primal_feas`: The primal feasibility norm at `solution` (default: `0.0` if uncontrained, `Inf` otherwise);
74-
- `multipliers`: The Lagrange multiplers wrt to the constraints (default: an uninitialzed vector like `nlp.meta.y0`);
75-
- `multipliers_L`: The Lagrange multiplers wrt to the lower bounds on the variables (default: an uninitialzed vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
76-
- `multipliers_U`: The Lagrange multiplers wrt to the upper bounds on the variables (default: an uninitialzed vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
74+
- `multipliers`: The Lagrange multipliers wrt to the constraints (default: an uninitialized vector like `nlp.meta.y0`);
75+
- `multipliers_L`: The Lagrange multipliers wrt to the lower bounds on the variables (default: an uninitialized vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
76+
- `multipliers_U`: The Lagrange multipliers wrt to the upper bounds on the variables (default: an uninitialized vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
7777
- `iter`: The number of iterations computed by the solver (default: `-1`);
7878
- `elapsed_time`: The elapsed time computed by the solver (default: `Inf`);
7979
- `solver_specific::Dict{Symbol,Any}`: A solver specific dictionary.
@@ -87,7 +87,7 @@ The following fields indicate whether the information above has been updated and
8787
- `solution_reliable`
8888
- `objective_reliable`
8989
- `residuals_reliable` (for `dual_feas` and `primal_feas`)
90-
- `multipliers_reliable` (for `multiplers`)
90+
- `multipliers_reliable` (for `multipliers`)
9191
- `bounds_multipliers_reliable` (for `multipliers_L` and `multipliers_U`)
9292
- `iter_reliable`
9393
- `time_reliable`

0 commit comments

Comments
 (0)