File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ enum Days {
2
2
SUNDAY = 0 ,
3
3
MONDAY = 1 ,
4
4
TUESDAY = 2 ,
5
- WEDNESAY = 3 ,
5
+ WEDNESDAY = 3 ,
6
6
THURSDAY = 4 ,
7
7
FRIDAY = 5 ,
8
8
SATURDAY = 6
@@ -74,7 +74,7 @@ const FunctionExpressions = {
74
74
* Run the task every S seconds
75
75
* @param {number } seconds
76
76
*/
77
- everySenconds ( seconds = 1 ) { return `*/${ seconds } * * * * *` } ,
77
+ everySeconds ( seconds = 1 ) { return `*/${ seconds } * * * * *` } ,
78
78
/**
79
79
* Run the task every M minutes
80
80
* @param {number } minutes
@@ -152,7 +152,7 @@ const FunctionExpressions = {
152
152
everyWeekday ( ) { return ConstantExpressions . EVERY_WEEKDAY } ,
153
153
/**
154
154
* Run the task on saturday and sunday at 00:00
155
- * Alias: EVERY_WEEKDAY
155
+ * Alias: EVERY_WEEKEND
156
156
*/
157
157
everyWeekend ( ) { return ConstantExpressions . EVERY_WEEKEND } ,
158
158
/**
You can’t perform that action at this time.
0 commit comments