Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPooja D.P <Pooja.D.P@ibm.com>2020-10-08 10:00:35 +0300
committerMyles Borins <mylesborins@github.com>2020-10-14 23:21:22 +0300
commit4164477b43c43097bf4beeefb52c672eadd6ded7 (patch)
treeaafac69179b69c2faa80ef3cc0e8c52bedaf5868 /doc/api/tracing.md
parentc865b02397ff257f6ffc4e0ab377e2adcf3629ba (diff)
doc: simplify wording in tracing APIs doc
PR-URL: https://github.com/nodejs/node/pull/35556 Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api/tracing.md')
-rw-r--r--doc/api/tracing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/tracing.md b/doc/api/tracing.md
index 9d1c873a3e8..5c56360319a 100644
--- a/doc/api/tracing.md
+++ b/doc/api/tracing.md
@@ -80,9 +80,9 @@ string that supports `${rotation}` and `${pid}`:
node --trace-event-categories v8 --trace-event-file-pattern '${pid}-${rotation}.log' server.js
```
-Starting with Node.js 10.0.0, the tracing system uses the same time source
-as the one used by `process.hrtime()`
-however the trace-event timestamps are expressed in microseconds,
+The tracing system uses the same time source
+as the one used by `process.hrtime()`.
+However the trace-event timestamps are expressed in microseconds,
unlike `process.hrtime()` which returns nanoseconds.
The features from this module are not available in [`Worker`][] threads.