summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/type-checker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type-checker.h b/src/type-checker.h
index e02107a3..b59e5588 100644
--- a/src/type-checker.h
+++ b/src/type-checker.h
@@ -163,7 +163,7 @@ class TypeChecker {
template <typename... Args>
void PrintStackIfFailed(Result result, const char* desc, Args... args) {
- // Minor optimzation, check result before constructing the vector to pass
+ // Minor optimization, check result before constructing the vector to pass
// to the other overload of PrintStackIfFailed.
if (Failed(result)) {
PrintStackIfFailed(result, desc, {args...});