Fix grammar

This commit is contained in:
madmaurice 2021-04-06 22:10:55 +02:00
parent b14ed6d9d1
commit 1ff74f4f6c

View file

@ -157,7 +157,7 @@ sub ctx_assign {
$ctx = $ctx->{base};
}
die "Variable $identifier does not defined" unless defined $ctx;
die "Variable $identifier is not defined" unless defined $ctx;
$ctx->{vars}->{$identifier} = $value;
}