Skip to content

Commit aa262e1

Browse files
author
Skr00b@!!
authored
removed back-slashes which weren't needed
1 parent c8148e0 commit aa262e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ manager.exists('next_job') //true
3838
manger.update('a_key_string_to_call_this_job',
3939
"0 */2 * * * *",
4040
() => {console.log("now running this job every two minutes, using this function..."});
41-
console.log(\`current jobs are: ${manager}\`);
41+
console.log(`current jobs are: ${manager}`);
4242
```
4343
Create a Manager
4444
===
@@ -113,7 +113,7 @@ Viewing jobs
113113
===
114114
if you want to see what jobs you have set up, you can just pass your manager as a string. It will display a formatted list of jobs, and their crontabs, and if they have a function to run.
115115
```javascript
116-
console.log(\`I got the current jobs: ${manager}\`)
116+
console.log(`I got the current jobs: ${manager}`)
117117
```
118118
If you need more details or would like to pass the string somewhere else you can use the *listCrons* function
119119
```javascript

0 commit comments

Comments
 (0)