Misc. typos

Found via `codespell`
Trivial typos

Found via `codespell`
This commit is contained in:
luz.paz
2018-08-09 14:43:09 -04:00
committed by wmayer
parent a6341b3f27
commit fab9cad50f
11 changed files with 20 additions and 20 deletions

View File

@@ -1474,7 +1474,7 @@ int System::solve_BFGS(SubSystem *subsys, bool /*isFine*/, bool isRedundantsolvi
subsys->getParams(x);
subsys->calcGrad(grad);
// Initial search direction oposed to gradient (steepest-descent)
// Initial search direction opposed to gradient (steepest-descent)
xdir = -grad;
lineSearch(subsys, xdir);
double err = subsys->error();