From 02c09534682ffd6143c0229536c368481ac2753b Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 3 Feb 2022 19:13:43 -0500 Subject: [PATCH] fix stupid typo --- src/core/CCVector.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CCVector.ml b/src/core/CCVector.ml index 09734eda..a4d96201 100644 --- a/src/core/CCVector.ml +++ b/src/core/CCVector.ml @@ -84,7 +84,7 @@ let[@inline] array_is_empty_ v = (* next capacity, if current one is [n] *) let[@inline] next_grow_ n = - min Sys.max_array_length (n + n lsl 1 + 5) + min Sys.max_array_length (n + n lsr 1 + 5) (* resize the underlying array using x to temporarily fill the array *) let resize_ v newcapacity x =