From 9d2665e2e8a60d5dbc544a25bbb7ec3b1625f63b Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Mon, 5 Apr 2021 03:18:53 +0200 Subject: [PATCH] Fix grammar --- lib/Minilisp.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Minilisp.pm b/lib/Minilisp.pm index a20f5b9..41be544 100644 --- a/lib/Minilisp.pm +++ b/lib/Minilisp.pm @@ -125,7 +125,7 @@ sub ctx_get { $ctx = $ctx->{base}; } - die "Variable $identifier does not defined" unless defined $ctx; + die "Identifier $identifier is not defined" unless defined $ctx; return $ctx->{vars}->{$identifier}; }