summary refs log tree commit diff
path: root/oidset.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-04-22 13:42:49 -0700
committerJunio C Hamano <gitster@pobox.com>2020-04-22 13:42:49 -0700
commita768f866e9233b758cb21e25c7b8c985b0009c1f (patch)
tree1b411eb4c59a9e648a50c1dfe829d89418d0b30b /oidset.h
parent7a8bb6db7cc04add05484c4fc907e34f76b12fb9 (diff)
parent0740d0a5d3046e28b8d49baafafe521c5fc81711 (diff)
Merge branch 'jk/oid-array-cleanups'
Code cleanup.

* jk/oid-array-cleanups:
  oidset: stop referring to sha1-array
  ref-filter: stop referring to "sha1 array"
  bisect: stop referring to sha1_array
  test-tool: rename sha1-array to oid-array
  oid_array: rename source file from sha1-array
  oid_array: use size_t for iteration
  oid_array: use size_t for count and allocation
Diffstat (limited to 'oidset.h')
-rw-r--r--oidset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/oidset.h b/oidset.h
index d8a106b127..3a2d9d1115 100644
--- a/oidset.h
+++ b/oidset.h
@@ -4,7 +4,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