Git fork

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>

authored by

Andrew Kreimer and committed by
Junio C Hamano
ca2746b7 f5dedddb

+2 -2
+1 -1
t/unit-tests/t-reftable-basics.c
··· 54 54 } 55 55 } 56 56 57 - if_test ("names_length retuns size of a NULL-terminated string array") { 57 + if_test ("names_length returns size of a NULL-terminated string array") { 58 58 const char *a[] = { "a", "b", NULL }; 59 59 check_int(names_length(a), ==, 2); 60 60 }
+1 -1
t/unit-tests/t-reftable-merged.c
··· 459 459 TEST(t_merged_logs(), "merged table with multiple log updates for same ref"); 460 460 TEST(t_merged_refs(), "merged table with multiple updates to same ref"); 461 461 TEST(t_merged_seek_multiple_times(), "merged table can seek multiple times"); 462 - TEST(t_merged_single_record(), "ref ocurring in only one record can be fetched"); 462 + TEST(t_merged_single_record(), "ref occurring in only one record can be fetched"); 463 463 464 464 return test_done(); 465 465 }