From a882de128dcb3271e43f419fe3d89519fed0772f Mon Sep 17 00:00:00 2001 From: Andreas Drewke Date: Sat, 28 Dec 2024 17:11:00 +0100 Subject: [PATCH] exception: some initial documentation --- documentation/README-FlowControl-Exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/README-FlowControl-Exceptions.md b/documentation/README-FlowControl-Exceptions.md index 8a5ed9e..76e3b90 100644 --- a/documentation/README-FlowControl-Exceptions.md +++ b/documentation/README-FlowControl-Exceptions.md @@ -27,7 +27,7 @@ function: module1Init() # in this case the following functions would not be executed anymore # the script would jump into catch block # and we would not see this message - console.printLine("data.txt: red file into memory"); + console.printLine("data.txt: read file into memory"); catch ($exception) console.printLine("An error occurred: " + $exception) # print the stack trace