aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p@janouch.name>2018-10-09 08:53:17 +0200
committerPřemysl Janouch <p@janouch.name>2018-10-09 08:53:17 +0200
commitf452191e62c1142c7ffdf3176f98a67ee764e12a (patch)
tree58acfe13b7b55652fa7ce18c940e954200652506
parent4c844e27892195caf9521d0fa89b1e0bf2907da2 (diff)
downloadell-f452191e62c1142c7ffdf3176f98a67ee764e12a.tar.gz
ell-f452191e62c1142c7ffdf3176f98a67ee764e12a.tar.xz
ell-f452191e62c1142c7ffdf3176f98a67ee764e12a.zip
Fix typo
-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;