From 4f4d55d10e24d2ae31103527cc380f359f34173f Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Sun, 24 Sep 2017 10:00:54 +0200 Subject: [PATCH] src: correct typo in trace_event header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/15583 Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Gibson Fahnestock Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell --- src/tracing/trace_event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tracing/trace_event.h b/src/tracing/trace_event.h index 61808eb94f75a1..d20d497c1e721b 100644 --- a/src/tracing/trace_event.h +++ b/src/tracing/trace_event.h @@ -30,7 +30,7 @@ enum CategoryGroupEnabledFlags { kEnabledForETWExport_CategoryGroupEnabledFlags = 1 << 3, }; -// By default, const char* asrgument values are assumed to have long-lived scope +// By default, const char* argument values are assumed to have long-lived scope // and will not be copied. Use this macro to force a const char* to be copied. #define TRACE_STR_COPY(str) node::tracing::TraceStringWithCopy(str)