diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-08 07:48:31 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-09 04:47:05 -0700 |
commit | f536696b732bc81c0aa05e20ff0e37dd0d02a2d4 (patch) | |
tree | d5b0e2497e5795e06d95e8479037c9d67837ad68 /src/libexpr/eval-error.cc | |
parent | f27a27f49e650b13ec3857c7ff6429e24010e160 (diff) |
Add comments
(cherry picked from commit 474fc4078acbe062fcc31ce91c69c8f33bf00d5f)
Change-Id: I9f78f7afd8468d0ab676c0f60c4f7d6140128583
Diffstat (limited to 'src/libexpr/eval-error.cc')
-rw-r--r-- | src/libexpr/eval-error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval-error.cc b/src/libexpr/eval-error.cc index b9411cbf4..250c59a19 100644 --- a/src/libexpr/eval-error.cc +++ b/src/libexpr/eval-error.cc @@ -91,7 +91,7 @@ void EvalErrorBuilder<T>::debugThrow() // `EvalState` is the only class that can construct an `EvalErrorBuilder`, // and it does so in dynamic storage. This is the final method called on - // any such instancve and must delete itself before throwing the underlying + // any such instance and must delete itself before throwing the underlying // error. auto error = std::move(this->error); delete this; |