From 3f74b12543e651c4285b13f22aec0beb12787907 Mon Sep 17 00:00:00 2001 From: Dalton Sweeney Date: Fri, 4 Sep 2020 09:37:13 -0700 Subject: [PATCH] Update rax.c Fix typo datafiled -> datafield. --- rax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rax.c b/rax.c index 7dcf045..b732ba3 100644 --- a/rax.c +++ b/rax.c @@ -182,7 +182,7 @@ static inline void raxStackFree(raxStack *ts) { ) /* Allocate a new non compressed node with the specified number of children. - * If datafiled is true, the allocation is made large enough to hold the + * If datafield is true, the allocation is made large enough to hold the * associated data pointer. * Returns the new node pointer. On out of memory NULL is returned. */ raxNode *raxNewNode(size_t children, int datafield) {