Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NamrataJha authored Dec 24, 2021
1 parent 4d762a4 commit 6a5e08c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion src/delete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export function deleteVersions(input: Input): Observable<boolean> {
}

if (!input.checkInput()) {
return throwError('Invlaid input combination')
return throwError('Invalid input combination')
}

if (input.numOldVersionsToDelete <= 0 && input.minVersionsToKeep < 0) {
Expand Down

0 comments on commit 6a5e08c

Please sign in to comment.