diff --git a/sortedUniq.js b/sortedUniq.js index 713f75ed6..6bad768c2 100644 --- a/sortedUniq.js +++ b/sortedUniq.js @@ -1,8 +1,10 @@ import baseSortedUniq from './.internal/baseSortedUniq.js' /** - * This method is like `uniq` except that it's designed and optimized + * This method is like `uniq` except that it only works * for sorted arrays. + * If the input array is known to be sorted `sortedUniq` is + * faster than `uniq`. * * @since 4.0.0 * @category Array