This commit is contained in:
Røb 2025-04-10 20:44:17 +00:00 committed by GitHub
commit 300919c42e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,25 +21,25 @@ const helpers = [
{
symbol: '*',
meaning: 'Any value',
example: '* * * *',
example: '* * * * *',
equivalent: 'Every minute',
},
{
symbol: '-',
meaning: 'Range of values',
example: '1-10 * * *',
example: '1-10 * * * *',
equivalent: 'Minutes 1 through 10',
},
{
symbol: ',',
meaning: 'List of values',
example: '1,10 * * *',
example: '1,10 * * * *',
equivalent: 'At minutes 1 and 10',
},
{
symbol: '/',
meaning: 'Step values',
example: '*/10 * * *',
example: '*/10 * * * *',
equivalent: 'Every 10 minutes',
},
{