From: Jeff King Date: Mon, 30 Mar 2020 14:04:13 +0000 (-0400) Subject: oidset: stop referring to sha1-array X-Git-Tag: v2.27.0-rc0~120^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0740d0a5d3046e28b8d49baafafe521c5fc81711;p=thirdparty%2Fgit.git oidset: stop referring to sha1-array Ths has been oid_array for some time, though the source only recently moved from sha1-array.[ch] to oid-array.[ch]. In either case, we should say "oid-array" here. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/oidset.h b/oidset.h index 5346563b0b..d6ef0546a5 100644 --- a/oidset.h +++ b/oidset.h @@ -5,7 +5,7 @@ #include "khash.h" /** - * This API is similar to sha1-array, in that it maintains a set of object ids + * This API is similar to oid-array, in that it maintains a set of object ids * in a memory-efficient way. The major differences are: * * 1. It uses a hash, so we can do online duplicate removal, rather than