summaryrefslogtreecommitdiff
path: root/lib/graph.c
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2021-10-14 02:05:44 +0300
committerGitHub <noreply@github.com>2021-10-14 02:05:44 +0300
commitd55517702115bc96261a0270d7c1c3965b39e6a4 (patch)
treee3c180272cc24117c6afcc5dc57bcf66d4c5738d /lib/graph.c
parent1aa12de6956262a968ce4e792fb03a68a962a23c (diff)
parent214d8a60e15dc1b086d3f6033f686246317739f1 (diff)
Merge pull request #9751 from ewlumpkin/comment_spelling_fixes
lib: fix spelling nits in more lib files' comments
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;
}