Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-10-12 23:51:34 +0300
committerJunio C Hamano <gitster@pobox.com>2021-10-12 23:51:34 +0300
commit25ed97c61bbc64cfe80e35a457f3e4f447a84e11 (patch)
tree1a930d016e00178fd76e5df5f94050874a943f34
parent32e28fc2de97fde29282cf4daddae5442d3e2a9d (diff)
parentafb32e81019c47e933368f126be3d6af657a2060 (diff)
Merge branch 'kz/revindex-comment-fix' into maint
Header comment fix. * kz/revindex-comment-fix: pack-revindex.h: correct the time complexity descriptions
-rw-r--r--pack-revindex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pack-revindex.h b/pack-revindex.h
index 479b8f2f9c..74f4eae668 100644
--- a/pack-revindex.h
+++ b/pack-revindex.h
@@ -109,7 +109,7 @@ off_t pack_pos_to_offset(struct packed_git *p, uint32_t pos);
* If the reverse index has not yet been loaded, or the position is out of
* bounds, this function aborts.
*
- * This function runs in time O(log N) with the number of objects in the MIDX.
+ * This function runs in constant time.
*/
uint32_t pack_pos_to_midx(struct multi_pack_index *m, uint32_t pos);
@@ -120,7 +120,7 @@ uint32_t pack_pos_to_midx(struct multi_pack_index *m, uint32_t pos);
* If the reverse index has not yet been loaded, or the position is out of
* bounds, this function aborts.
*
- * This function runs in constant time.
+ * This function runs in time O(log N) with the number of objects in the MIDX.
*/
int midx_to_pack_pos(struct multi_pack_index *midx, uint32_t at, uint32_t *pos);