From bd1f2ededdad3169f4a93621b93ed8dca6c6326b Mon Sep 17 00:00:00 2001 From: Andrew B Coathup <28278242+abcoathup@users.noreply.github.com> Date: Thu, 8 Aug 2019 05:35:17 +1000 Subject: [PATCH] Update Arrays.sol (#1863) Fix typo --- contracts/utils/Arrays.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/utils/Arrays.sol b/contracts/utils/Arrays.sol index cbc59a1e2..eb0deb169 100644 --- a/contracts/utils/Arrays.sol +++ b/contracts/utils/Arrays.sol @@ -9,7 +9,7 @@ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all - * values in the array are stictly less than `element`), the array length is + * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no