Commit bd1f2ede by Andrew B Coathup Committed by Francisco Giordano

Update Arrays.sol (#1863)

Fix typo
parent 0ba85035
...@@ -9,7 +9,7 @@ library Arrays { ...@@ -9,7 +9,7 @@ library Arrays {
/** /**
* @dev Searches a sorted `array` and returns the first index that contains * @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 * 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). * returned. Time complexity O(log n).
* *
* `array` is expected to be sorted in ascending order, and to contain no * `array` is expected to be sorted in ascending order, and to contain no
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment