summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/ErrorOr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/NeKit/ErrorOr.h')
-rw-r--r--src/kernel/NeKit/ErrorOr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/NeKit/ErrorOr.h b/src/kernel/NeKit/ErrorOr.h
index b471e33e..87031b75 100644
--- a/src/kernel/NeKit/ErrorOr.h
+++ b/src/kernel/NeKit/ErrorOr.h
@@ -24,7 +24,7 @@ class ErrorOr final {
using TypePtr = T*;
explicit ErrorOr(ErrorT err) : mRef((T*) RTL_ALLOCA(sizeof(T))), mId(err) {
- // AMLALE: Invalidate the value of mRef to make computational evaluations false.
+ // TODO: Invalidate the value of mRef to make computational evaluations false.
mRef = nullptr;
}