Skip to content

Commit c13bcbe

Browse files
committed
fix typo
1 parent fda90f4 commit c13bcbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/utils/validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module.exports = validate_config = function (lt_config, validation_configs) {
5858
max_duration == null ||
5959
isNaN(max_duration))) {
6060
if (Number(max_duration) && Number(max_duration) % 1 !== 0){
61-
reject("Error!! max_duration should be and Integer between 2 and 240 minutes");
61+
reject("Error!! max_duration should be an Integer between 2 and 240 minutes");
6262
}else if (parseInt(max_duration) <2 || parseInt(max_duration) > 240){
6363
reject("Error!! max_duration should be between 2 and 240 minutes");
6464
}

0 commit comments

Comments
 (0)