Skip to content

Commit 9a82902

Browse files
committed
Fix typo
1 parent 780154f commit 9a82902

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nodejs/packages/layer/src/wrapper.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ declare global {
9292
}
9393

9494
function getActiveInstumentations(): Set<string> {
95-
let emabledInstrumentations: string[] = defaultInstrumentationList;
95+
let enabledInstrumentations: string[] = defaultInstrumentationList;
9696
if (process.env.OTEL_NODE_ENABLED_INSTRUMENTATIONS) {
97-
emabledInstrumentations =
97+
enabledInstrumentations =
9898
process.env.OTEL_NODE_ENABLED_INSTRUMENTATIONS.split(',').map(i =>
9999
i.trim(),
100100
);
101101
}
102-
const instrumentationSet = new Set<string>(emabledInstrumentations);
102+
const instrumentationSet = new Set<string>(enabledInstrumentations);
103103
if (process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS) {
104104
const disableInstrumentations =
105105
process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS.split(',').map(i =>

0 commit comments

Comments
 (0)