diff --git a/async-await/event-loop.md b/async-await/event-loop.md index 6b2e133..9ea0e8d 100644 --- a/async-await/event-loop.md +++ b/async-await/event-loop.md @@ -16,7 +16,6 @@ examples: 2. ```javascript - const promise = new Promise(function (resolve, reject) { console.log('test'); resolve(); @@ -25,4 +24,4 @@ examples: }); ``` -console.log('test2') will be put in the Event Loop. \ No newline at end of file +`console.log('test2')` will be put in the Event Loop. \ No newline at end of file