aboutsummaryrefslogtreecommitdiff
path: root/ell.c
diff options
context:
space:
mode:
Diffstat (limited to 'ell.c')
-rw-r--r--ell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ell.c b/ell.c
index e437b36..94b5619 100644
--- a/ell.c
+++ b/ell.c
@@ -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;