From 74c1f4ef78d8082a5eb6e5c2a96fee12e4d07f6b Mon Sep 17 00:00:00 2001 From: Gilles De Mey Date: Sun, 21 Jan 2018 15:01:56 +0100 Subject: [PATCH] lib: fix typo in trace_events_async_hooks.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit chrome://traceing does not exist PR-URL: https://github.com/nodejs/node/pull/18280 Reviewed-By: Vse Mozhet Byt Reviewed-By: Jon Moss Reviewed-By: Michaƫl Zasso --- lib/internal/trace_events_async_hooks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/trace_events_async_hooks.js b/lib/internal/trace_events_async_hooks.js index 6d996b083fb49b..704da98e14412b 100644 --- a/lib/internal/trace_events_async_hooks.js +++ b/lib/internal/trace_events_async_hooks.js @@ -4,7 +4,7 @@ const trace_events = process.binding('trace_events'); const async_wrap = process.binding('async_wrap'); const async_hooks = require('async_hooks'); -// Use small letters such that chrome://traceing groups by the name. +// Use small letters such that chrome://tracing groups by the name. // The behavior is not only useful but the same as the events emitted using // the specific C++ macros. const BEFORE_EVENT = 'b'.charCodeAt(0);