diff --git a/async-await/event-loop.md b/async-await/event-loop.md index 0f22cbf..6b2e133 100644 --- a/async-await/event-loop.md +++ b/async-await/event-loop.md @@ -10,11 +10,9 @@ examples: 1. ```javascript - setTimeout(() => console.log('test'), 1000); - ``` -console.log('test') will be put in the Event Loop. +`console.log('test')` will be put in the Event Loop. 2. ```javascript