From d9b2662ca6dc74d7642d7d5295cc4822152110dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Ulzurrun=20de=20Asanza=20i=20S=C3=A0ez?= Date: Tue, 23 Jul 2019 07:41:10 +0200 Subject: [PATCH] :pencil2: [mergeForEach] Fix typo in documentation --- src/mergeForEach.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mergeForEach.ts b/src/mergeForEach.ts index f131095..27ab927 100644 --- a/src/mergeForEach.ts +++ b/src/mergeForEach.ts @@ -14,7 +14,7 @@ export type ComparisonResult = number * Can be used to implement efficient algorithms which profit from sorted data * like `mergeSort` or `mergeJoinWith`. * - * Both collections must be sortable. They will be sorted ascendently using + * Both collections must be sortable. They will be sorted ascendantly using * value returned by the corresponding iteratee. * * @param lhs A collection of elements. @@ -144,7 +144,7 @@ declare module 'lodash' { * Can be used to implement efficient algorithms which profit from sorted * data like `mergeSort` or `mergeJoinWith`. * - * Both collections must be sortable. They will be sorted ascendently using + * Both collections must be sortable. They will be sorted ascendantly using * value returned by the corresponding iteratee. * * @param lhs A collection of elements.