From 601299793a9d80b6fe0f3982bf6f944e1c0e2901 Mon Sep 17 00:00:00 2001 From: Mike Kaufman Date: Fri, 26 Jan 2018 16:07:47 -0800 Subject: [PATCH] readme updates --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fa7cb2..b5335a8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# h1 Node.js Async Context Definitions +# Node.js Async Context Definitions This is an effort to formalize & visualize "asynchronous context" in Node.js applications. @@ -66,7 +66,7 @@ Given our model, this would produce the following event stream: {"event": "executeEnd", "executeID": 6 } // callback f1() is ending ``` -## Events product a Directed Acyclic Graph (DAG) +## Events Produce the Async Call Graph The events above allow us to produce a Directed Acyclic Graph [DAG](https://en.wikipedia.org/wiki/Directed_acyclic_graph) that we call the "Async Call Graph". Specifically, the `executeBegin`, `cause` and `link` events correspond to node & edge creation in the graph.