aboutsummaryrefslogtreecommitdiff
path: root/src/transformations/defmodel_impl.hpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-10-25 16:18:58 +0100
committerEven Rouault <even.rouault@spatialys.com>2020-10-25 16:18:58 +0100
commit64312b33672a1c24feefa5127f91666f3b25f583 (patch)
tree6e51c947c0b610664d41045a107be6f7ef334625 /src/transformations/defmodel_impl.hpp
parent32f92851c0028e1ff6d5203d34c7ded1ffe1951a (diff)
downloadPROJ-64312b33672a1c24feefa5127f91666f3b25f583.tar.gz
PROJ-64312b33672a1c24feefa5127f91666f3b25f583.zip
Fix typos spotted by scripts/fix_typos.sh
Diffstat (limited to 'src/transformations/defmodel_impl.hpp')
-rw-r--r--src/transformations/defmodel_impl.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transformations/defmodel_impl.hpp b/src/transformations/defmodel_impl.hpp
index a15137d7..abd07286 100644
--- a/src/transformations/defmodel_impl.hpp
+++ b/src/transformations/defmodel_impl.hpp
@@ -1232,7 +1232,7 @@ bool Evaluator<Grid, GridSet, EvaluatorIface>::inverse(
constexpr bool forInverseComputation = true;
for (int i = 0; i < 10; i++) {
#ifdef DEBUG_DEFMODEL
- iface.log("Iteration " + std::to_string(i) + ": before foward: x=" +
+ iface.log("Iteration " + std::to_string(i) + ": before forward: x=" +
toString(x_out) + ", y=" + toString(y_out));
#endif
double x_new;
@@ -1243,7 +1243,7 @@ bool Evaluator<Grid, GridSet, EvaluatorIface>::inverse(
return false;
}
#ifdef DEBUG_DEFMODEL
- iface.log("After foward: x=" + toString(x_new) + ", y=" +
+ iface.log("After forward: x=" + toString(x_new) + ", y=" +
toString(y_new));
#endif
const double dx = x_new - x;