diff options
author | Přemysl Janouch <p@janouch.name> | 2018-10-09 08:53:17 +0200 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-10-09 08:53:17 +0200 |
commit | f452191e62c1142c7ffdf3176f98a67ee764e12a (patch) | |
tree | 58acfe13b7b55652fa7ce18c940e954200652506 | |
parent | 4c844e27892195caf9521d0fa89b1e0bf2907da2 (diff) | |
download | ell-f452191e62c1142c7ffdf3176f98a67ee764e12a.tar.gz ell-f452191e62c1142c7ffdf3176f98a67ee764e12a.tar.xz ell-f452191e62c1142c7ffdf3176f98a67ee764e12a.zip |
Fix typo
-rw-r--r-- | ell.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |