diff --git a/dist/index.js b/dist/index.js index ae63fbe..14c871c 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 59d12fd..c2f9c3c 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) {