This commit is contained in:
madmaurice 2021-04-04 01:44:05 +02:00
parent abe30ac2b2
commit c909c8880d

View file

@ -366,7 +366,7 @@ sub parser_expr {
return sub {
my $ctx = shift;
my $name = $tok->{value};
die "Undefined idnetifier $name" unless
die "Undefined identifier $name" unless
exists $ctx->{$name};
return $ctx->{$name};
}