This commit is contained in:
Přemysl Eric Janouch 2018-10-09 08:53:17 +02:00
parent 4c844e2789
commit f452191e62
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

2
ell.c
View File

@ -847,7 +847,7 @@ ell_eval_native (struct ell *ell, const char *name, struct ell_v *args,
static bool
ell_eval_resolved (struct ell *ell, struct ell_v *body, struct ell_v *args,
struct ell_v **result) {
// Resolving names ecursively could be pretty fatal, let's not do that
// Resolving names recursively could be pretty fatal, let's not do that
if (body->type == ELL_STRING)
return ell_check (ell, (*result = ell_clone (body)));
struct ell_v *arguments = NULL;