diff mbox series

[14/20] ref-filter: fix a typo

Message ID 9697dc1c81db33dca7e4a3c093ee83cdc0efea1e.1726770881.git.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit 20652956420f7bd64339b4566623c293016e86b7
Headers show
Series Fix typos | expand

Commit Message

Andrew Kreimer Sept. 19, 2024, 6:34 p.m. UTC
From: Andrew Kreimer <algonell@gmail.com>

Fix a typo in comments.

Signed-off-by: Andrew Kreimer <algonell@gmail.com>
---
 ref-filter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/ref-filter.c b/ref-filter.c
index b06e18a569a..308097e740b 100644
--- a/ref-filter.c
+++ b/ref-filter.c
@@ -2384,7 +2384,7 @@  static int populate_value(struct ref_array_item *ref, struct strbuf *err)
 	CALLOC_ARRAY(ref->value, used_atom_cnt);
 
 	/**
-	 * NEEDSWORK: The following code might be unncessary if all codepaths
+	 * NEEDSWORK: The following code might be unnecessary if all codepaths
 	 * that call populate_value() populates the symref member of ref_array_item
 	 * like in apply_ref_filter(). Currently pretty_print_ref() is the only codepath
 	 * that calls populate_value() without first populating symref.