diff --git a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md
index 6887c7b9b..d6a067b0e 100644
--- a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md
+++ b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md
@@ -1 +1,9 @@
-# Process next tick
\ No newline at end of file
+# process.nextTick()
+
+Every time the event loop takes a full trip, we call it a tick. When we pass a function to `process.nextTick()`, we instruct the engine to invoke this function at the end of the current operation before the next event loop tick starts.
+
+Free Content
+
+Understanding Process.NextTick()
+The Node.js process.nextTick()
+The process.nextTick Function