Skip to content

Commit

Permalink
fix: correct order of learn material
Browse files Browse the repository at this point in the history
  • Loading branch information
ovflowd committed Feb 19, 2024
1 parent 281609a commit 1990b5a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
"overviewOfBlockingVsNonBlocking": "Overview of Blocking vs Non-Blocking",
"javascriptAsynchronousProgrammingAndCallbacks": "JavaScript Asynchronous Programming and Callbacks",
"discoverJavaScriptTimers": "Discover JavaScript Timers",
"theNodejsEventLoop": "The Node.js Event Loop",
"theNodejsEventEmitter": "The Node.js Event Emitter",
"understandingProcessnexttick": "Understanding process.nextTick()",
"understandingSetimmediate": "Understanding setImmediate()",
"theNodejsEventEmitter": "The Node.js Event emitter",
"eventLoopTimersAndProcessnexttick": "Event Loop, Timers, and process.nextTick()"
"understandingSetimmediate": "Understanding setImmediate()"
}
},
"manipulatingFiles": {
Expand Down
16 changes: 8 additions & 8 deletions navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,21 +154,21 @@
"link": "/learn/asynchronous-work/discover-javascript-timers",
"label": "components.navigation.learn.asynchronousWork.links.discoverJavaScriptTimers"
},
"theNodejsEventLoop": {
"link": "/learn/asynchronous-work/event-loop-timers-and-nexttick",
"label": "components.navigation.learn.asynchronousWork.links.theNodejsEventLoop"
},
"theNodejsEventEmitter": {
"link": "/learn/asynchronous-work/the-nodejs-event-emitter",
"label": "components.navigation.learn.asynchronousWork.links.theNodejsEventEmitter"
},
"understandingProcessnexttick": {
"link": "/learn/asynchronous-work/understanding-processnexttick",
"label": "components.navigation.learn.asynchronousWork.links.understandingProcessnexttick"
},
"understandingSetimmediate": {
"link": "/learn/asynchronous-work/understanding-setimmediate",
"label": "components.navigation.learn.asynchronousWork.links.understandingSetimmediate"
},
"theNodejsEventEmitter": {
"link": "/learn/asynchronous-work/the-nodejs-event-emitter",
"label": "components.navigation.learn.asynchronousWork.links.theNodejsEventEmitter"
},
"eventLoopTimersAndProcessnexttick": {
"link": "/learn/asynchronous-work/event-loop-timers-and-nexttick",
"label": "components.navigation.learn.asynchronousWork.links.eventLoopTimersAndProcessnexttick"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: Event Loop, Timers, and process.nextTick()
title: The Node.js Event Loop
layout: learn.hbs
---

# Event Loop, Timers, and `process.nextTick()`
# The Node.js Event Loop

## What is the Event Loop?

Expand Down

0 comments on commit 1990b5a

Please sign in to comment.