Skip to content

Commit

Permalink
style: fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Oct 29, 2023
1 parent bc83d40 commit 8ea5fdd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class CronTime {
return date.weekday === 7 ? 0 : date.weekday;
}

/*
/**
* Ensure that the syntax parsed correctly and correct the specified values if needed.
*/
private _verifyParse() {
Expand Down Expand Up @@ -684,7 +684,7 @@ export class CronTime {
return true;
}

/*
/**
* Parse the cron syntax into something useful for selecting the next execution time.
*
* Algorithm:
Expand Down Expand Up @@ -733,7 +733,7 @@ export class CronTime {
}
}

/*
/**
* Parse individual field from the cron syntax provided.
*
* Algorithm:
Expand Down Expand Up @@ -762,7 +762,7 @@ export class CronTime {
}
});

// * is a shortcut to [low-high] range for the field
// "*" is a shortcut to [low-high] range for the field
value = value.replace(RE_WILDCARDS, `${low}-${high}`);

// commas separate information, so split based on those
Expand Down

0 comments on commit 8ea5fdd

Please sign in to comment.