summaryrefslogtreecommitdiff
path: root/lib/graph.c
diff options
context:
space:
mode:
authorewlumpkin <ewlumpkin@gmail.com>2021-10-05 21:33:14 +0000
committerewlumpkin <ewlumpkin@gmail.com>2021-10-05 21:42:57 +0000
commit214d8a60e15dc1b086d3f6033f686246317739f1 (patch)
treedb070e001b544ede6a95886d972e4f45a977bad4 /lib/graph.c
parentf72b987de1d4897919902b96559c8fd4da58b366 (diff)
lib: fix spelling nits in more lib files
Signed-off-by: ewlumpkin <ewlumpkin@gmail.com>
Diffstat (limited to 'lib/graph.c')
-rw-r--r--lib/graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/graph.c b/lib/graph.c
index 1cbe1b90f9..ba7314fb25 100644
--- a/lib/graph.c
+++ b/lib/graph.c
@@ -69,7 +69,7 @@ static void graph_vector_remove(vector v, unsigned int ix)
* and v->active is > ix. */
v->active--;
/* if ix == v->active--, we set the item to itself, then to NULL...
- * still correct, no check neccessary. */
+ * still correct, no check necessary. */
v->index[ix] = v->index[v->active];
v->index[v->active] = NULL;
}