vendor/libgit2/src/regexp.c in rugged-1.3.2.3 vs vendor/libgit2/src/regexp.c in rugged-1.4.2
- old
+ new
@@ -43,10 +43,10 @@
{
int static_ovec[9] = {0}, *ovec;
int error;
size_t i;
- /* The ovec array always needs to be a mutiple of three */
+ /* The ovec array always needs to be a multiple of three */
if (nmatches <= ARRAY_SIZE(static_ovec) / 3)
ovec = static_ovec;
else
ovec = git__calloc(nmatches * 3, sizeof(*ovec));
GIT_ERROR_CHECK_ALLOC(ovec);