Skip to content

Commit

Permalink
[Docs] fix typo alpaqa:::KKTError
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Mar 30, 2024
1 parent 13967f9 commit e74bda9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interfaces/python/src/problem/problems.py.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ void register_problems(py::module_ &m) {
"problem"_a, "Returns a string representing the functions provided by the problem.");

using KKTError = alpaqa::KKTError<config_t>;
py::class_<KKTError>(m, "KKTError", "C++ documentation: :cpp:class:`alpaqa:::KKTError`")
py::class_<KKTError>(m, "KKTError", "C++ documentation: :cpp:class:`alpaqa::KKTError`")
.def_readwrite("stationarity", &KKTError::stationarity)
.def_readwrite("constr_violation", &KKTError::constr_violation)
.def_readwrite("complementarity", &KKTError::complementarity)
Expand Down

0 comments on commit e74bda9

Please sign in to comment.