From cffa2f192661b30bc913c67cae6bd09de9422085 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Tue, 27 Apr 2021 20:31:07 -0500 Subject: [PATCH] janet: fix typo in stepA error handling. --- impls/janet/stepA_mal.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/impls/janet/stepA_mal.janet b/impls/janet/stepA_mal.janet index e17dc292..ca33086d 100644 --- a/impls/janet/stepA_mal.janet +++ b/impls/janet/stepA_mal.janet @@ -274,7 +274,7 @@ (t/nil?* err) (print) ## - (= (string? err)) + (string? err) (print err) ## (print (string "Error: " (PRINT err)))))