t/unit-tests: fix typos

Fix typos via codespell.

Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Andrew Kreimer
2024-10-10 18:11:24 +03:00
committed by Junio C Hamano
parent f5dedddb75
commit ca2746b791
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ int cmd_main(int argc UNUSED, const char *argv[] UNUSED)
}
}
if_test ("names_length retuns size of a NULL-terminated string array") {
if_test ("names_length returns size of a NULL-terminated string array") {
const char *a[] = { "a", "b", NULL };
check_int(names_length(a), ==, 2);
}