Skip to content

Commit cfe7339

Browse files
committed
src: fix typos in node_lttng_provider.h
Is a semver-breaking change Refs: #11189 (comment)
1 parent cd3c478 commit cfe7339

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node_lttng_provider.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void NODE_NET_STREAM_END(node_lttng_connection_t* conn,
6161
void NODE_GC_START(v8::GCType type,
6262
v8::GCCallbackFlags flags,
6363
v8::Isolate* isolate) {
64-
const char* typeStr = "Unkown GC Type";
64+
const char* typeStr = "Unknown GC Type";
6565
const char* flagsStr = "Unknown GC Flag";
6666

6767
#define BUILD_IF(f) if (type == v8::GCType::f) { typeStr = #f; }
@@ -78,7 +78,7 @@ void NODE_GC_START(v8::GCType type,
7878
void NODE_GC_DONE(v8::GCType type,
7979
v8::GCCallbackFlags flags,
8080
v8::Isolate* isolate) {
81-
const char* typeStr = "Unkown GC Type";
81+
const char* typeStr = "Unknown GC Type";
8282
const char* flagsStr = "Unknown GC Flag";
8383

8484
#define BUILD_IF(f) if (type == v8::GCType::f) { typeStr = #f; }

0 commit comments

Comments
 (0)