Update Arrays.sol (#1863)

Fix typo
This commit is contained in:
Andrew B Coathup
2019-08-08 05:35:17 +10:00
committed by Francisco Giordano
parent 0ba85035cc
commit bd1f2ededd

View File

@ -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