strvec: use correct member name in comments
commitf10b0989b8d34b9677ee7b07194296f999815378
authorLinus Arver <linusa@google.com>
Fri, 12 Jan 2024 07:06:35 +0000 (12 07:06 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 12 Jan 2024 21:38:07 +0000 (12 13:38 -0800)
treea40e369b1440f04206fb37dcabce674ae5d75bac
parent564d0252ca632e0264ed670534a51d18a689ef5d
strvec: use correct member name in comments

In d70a9eb611 (strvec: rename struct fields, 2020-07-28), we renamed the
"argv" member to "v". In the same patch we also did the following rename
in strvec.c:

    -void strvec_pushv(struct strvec *array, const char **argv)
    +void strvec_pushv(struct strvec *array, const char **items)

and it appears that this s/argv/items operation was erroneously applied
to strvec.h.

Rename "items" to "v".

Signed-off-by: Linus Arver <linusa@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
strvec.h