Skip to content

Commit 5c3ecbb

Browse files
Merge pull request learning-zone#21 from Tosin-webdev/typo
fixed typo
2 parents afc735a + 53ece8a commit 5c3ecbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ Node JS Platform does not follow Request/Response Multi-Threaded Stateless Model
361361
* Node JS Web Server receives those requests and places them into a Queue. It is known as “Event Queue”.
362362
* Node JS Web Server internally has a Component, known as “Event Loop”. Why it got this name is that it uses indefinite loop to receive requests and process them.
363363
* Event Loop uses Single Thread only. It is main heart of Node JS Platform Processing Model.
364-
* Even Loop checks any Client Request is placed in Event Queue. If no, then wait for incoming requests for indefinitely.
364+
* Event Loop checks any Client Request is placed in Event Queue. If no, then wait for incoming requests for indefinitely.
365365
* If yes, then pick up one Client Request from Event Queue
366366
* Starts process that Client Request
367367
* If that Client Request Does Not requires any Blocking IO Operations, then process everything, prepare response and send it back to client.

0 commit comments

Comments
 (0)