1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-10-28 04:49:43 +01:00

run-command: fix a typo

Fix a typo in comments.

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-09-19 18:34:37 +00:00 committed by Junio C Hamano
parent a0ef3816c1
commit b71d52cef5

View file

@ -535,7 +535,7 @@ enum start_bg_result {
/* timeout expired waiting for child to become "ready" */ /* timeout expired waiting for child to become "ready" */
SBGR_TIMEOUT, SBGR_TIMEOUT,
/* child process exited or was signalled before becomming "ready" */ /* child process exited or was signalled before becoming "ready" */
SBGR_DIED, SBGR_DIED,
}; };