From 6a5e08c48d46d1e49236909a40f2d107f8d8a03f Mon Sep 17 00:00:00 2001 From: Namrata Jha Date: Fri, 24 Dec 2021 10:21:02 +0000 Subject: [PATCH] fix typo --- dist/index.js | 2 +- src/delete.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index ae63fbe4..14c871c1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -113,7 +113,7 @@ function deleteVersions(input) { return rxjs_1.throwError('No token found'); } if (!input.checkInput()) { - return rxjs_1.throwError('Invlaid input combination'); + return rxjs_1.throwError('Invalid input combination'); } if (input.numOldVersionsToDelete <= 0 && input.minVersionsToKeep < 0) { console.log('Number of old versions to delete input is 0 or less, no versions will be deleted'); diff --git a/src/delete.ts b/src/delete.ts index 59d12fdd..c2f9c3c6 100644 --- a/src/delete.ts +++ b/src/delete.ts @@ -134,7 +134,7 @@ export function deleteVersions(input: Input): Observable { } if (!input.checkInput()) { - return throwError('Invlaid input combination') + return throwError('Invalid input combination') } if (input.numOldVersionsToDelete <= 0 && input.minVersionsToKeep < 0) {