aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorBen Burdette <bburdette@protonmail.com>2022-07-11 10:21:12 -0600
committerBen Burdette <bburdette@protonmail.com>2022-07-11 10:21:12 -0600
commit69ea265fd26e6b503bb52566ce6f5f12e0a75661 (patch)
tree01d9fc1e2e8303ed86974d4690d0e0ce18776332 /src/libexpr
parent49ff4ef6373f4aaeb6194fb4a195d3037c74312e (diff)
'tryEval' not 'try clause'
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/eval.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index 28256ec5c..956c4b474 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -838,7 +838,7 @@ void EvalState::runDebugRepl(const Error * error, const Env & env, const Expr &
printError("%s\n\n", error->what());
if (trylevel > 0 && error->info().level != lvlInfo)
- printError("This exception occurred in a try clause. use " ANSI_GREEN "--ignore-try" ANSI_NORMAL " to skip these.\n");
+ printError("This exception occurred in a 'tryEval' call. Use " ANSI_GREEN "--ignore-try" ANSI_NORMAL " to skip these.\n");
printError(ANSI_BOLD "Starting REPL to allow you to inspect the current state of the evaluator.\n" ANSI_NORMAL);
}