From 992355cdf984c4d5e91ae18b3eff93ad8011c16b Mon Sep 17 00:00:00 2001 From: "Pooja D.P" Date: Thu, 8 Oct 2020 11:00:35 +0400 Subject: [PATCH] doc: simplify wording in tracing APIs doc PR-URL: https://github.com/nodejs/node/pull/35556 Reviewed-By: Harshitha K P Reviewed-By: Rich Trott --- doc/api/tracing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/tracing.md b/doc/api/tracing.md index 9350e0b9ca97da..530f534d82476b 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.