Skip to content

Commit

Permalink
[doc] add object name to format description
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasMadsen committed Sep 26, 2016
1 parent 41fb2fb commit 7330cea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ to get an uncompressed file, just set the environment variable `NODE_DPROF_DEBUG
There is an initial object containing metadata and a "root" node:

```javascript
{
Root {
version: String, // the version of dprof there generated this JSON file
total: Number, // execution time in nanoseconds
root: Node, // The root node, has uid 0
Expand All @@ -100,7 +100,7 @@ There is an initial object containing metadata and a "root" node:
Each nested `Node` has the following format:

```javascript
{
Node {
name: String, // Handle name of the async operation
uid: Number, // Unique identifier for each node (from asyncHook)
parent: Number, // Uid for the parent node
Expand Down

0 comments on commit 7330cea

Please sign in to comment.