summaryrefslogtreecommitdiffstats
path: root/src/util/expression-evaluator.cpp
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
committerluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
commit202e75590f8200823ef0efd36cc0edbd1bf1edcc (patch)
tree1a18f646f7e49b0e1836efd6401793f6e9c38d68 /src/util/expression-evaluator.cpp
parentRestore ability to switch mode while using spray tool (is this even useful?). (diff)
downloadinkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.tar.gz
inkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.zip
Misc. typos
Found via `codespell`
Diffstat (limited to 'src/util/expression-evaluator.cpp')
-rw-r--r--src/util/expression-evaluator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/expression-evaluator.cpp b/src/util/expression-evaluator.cpp
index dd7ce97f7..0a2dd6d50 100644
--- a/src/util/expression-evaluator.cpp
+++ b/src/util/expression-evaluator.cpp
@@ -274,7 +274,7 @@ void ExpressionEvaluator::parseNextToken()
// We're all done
current_token.type = TOKEN_END;
} else if ( s[0] == '+' || s[0] == '-' ) {
- // Snatch these before the g_strtod() does, othewise they might
+ // Snatch these before the g_strtod() does, otherwise they might
// be used in a numeric conversion.
acceptTokenCount(1, s[0]);
} else {