builtin: fix typos

Fix typos in comments.

Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Andrew Kreimer 2024-09-24 16:09:06 +03:00 committed by Junio C Hamano
parent 6258f68c3c
commit ed4d4f3837
4 changed files with 4 additions and 4 deletions

View File

@ -542,7 +542,7 @@ static void open_html(const char *path)


static void show_html_page(const char *page) static void show_html_page(const char *page)
{ {
struct strbuf page_path; /* it leaks but we exec bellow */ struct strbuf page_path; /* it leaks but we exec below */


get_html_page_path(&page_path, page); get_html_page_path(&page_path, page);



View File

@ -507,7 +507,7 @@ static int get_common_prefix_len(const char *common_prefix)
common_prefix_len = strlen(common_prefix); common_prefix_len = strlen(common_prefix);


/* /*
* If the prefix has a trailing slash, strip it so that submodules wont * If the prefix has a trailing slash, strip it so that submodules won't
* be pruned from the index. * be pruned from the index.
*/ */
if (common_prefix[common_prefix_len - 1] == '/') if (common_prefix[common_prefix_len - 1] == '/')

View File

@ -65,7 +65,7 @@ static void set_commit_cutoff(struct commit *commit)
static void adjust_cutoff_timestamp_for_slop(void) static void adjust_cutoff_timestamp_for_slop(void)
{ {
if (cutoff) { if (cutoff) {
/* check for undeflow */ /* check for underflow */
if (cutoff > TIME_MIN + CUTOFF_DATE_SLOP) if (cutoff > TIME_MIN + CUTOFF_DATE_SLOP)
cutoff = cutoff - CUTOFF_DATE_SLOP; cutoff = cutoff - CUTOFF_DATE_SLOP;
else else

View File

@ -1325,7 +1325,7 @@ static int update_shallow_ref(struct command *cmd, struct shallow_info *si)
} }


/* /*
* NEEDSWORK: we should consolidate various implementions of "are we * NEEDSWORK: we should consolidate various implementations of "are we
* on an unborn branch?" test into one, and make the unified one more * on an unborn branch?" test into one, and make the unified one more
* robust. !get_sha1() based check used here and elsewhere would not * robust. !get_sha1() based check used here and elsewhere would not
* allow us to tell an unborn branch from corrupt ref, for example. * allow us to tell an unborn branch from corrupt ref, for example.