From 9d5ab12a0120d2c8c5997ccf0dc3ae0af8efc505 Mon Sep 17 00:00:00 2001 From: JPeer264 Date: Mon, 11 May 2026 13:49:32 +0200 Subject: [PATCH] chore: Typo intergation -> integration --- packages/core/test/lib/integration.test.ts | 2 +- .../src/integrations/http/httpServerSpansIntegration.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/test/lib/integration.test.ts b/packages/core/test/lib/integration.test.ts index 75e13374daa7..e5362d669716 100644 --- a/packages/core/test/lib/integration.test.ts +++ b/packages/core/test/lib/integration.test.ts @@ -73,7 +73,7 @@ describe('getIntegrationsToSetup', () => { expect(integrations.map(i => i.name)).toEqual(expected); }); - test('it uses passed integration over default intergation', () => { + test('it uses passed integration over default integration', () => { const integrationDefault = new MockIntegration('ChaseSquirrels'); const integration1 = new MockIntegration('ChaseSquirrels'); diff --git a/packages/node-core/src/integrations/http/httpServerSpansIntegration.ts b/packages/node-core/src/integrations/http/httpServerSpansIntegration.ts index 3d70387df415..314f733a7dae 100644 --- a/packages/node-core/src/integrations/http/httpServerSpansIntegration.ts +++ b/packages/node-core/src/integrations/http/httpServerSpansIntegration.ts @@ -249,13 +249,13 @@ const _httpServerSpansIntegration = ((options: HttpServerSpansIntegrationOptions if (client.getIntegrationByName('Http')) { debug.warn( - 'It seems that you have manually added `httpServerSpansIntergation` while `httpIntegration` is also present. Make sure to remove `httpIntegration` when adding `httpServerSpansIntegration`.', + 'It seems that you have manually added `httpServerSpansIntegration` while `httpIntegration` is also present. Make sure to remove `httpIntegration` when adding `httpServerSpansIntegration`.', ); } if (!client.getIntegrationByName('Http.Server')) { debug.error( - 'It seems that you have manually added `httpServerSpansIntergation` without adding `httpServerIntegration`. This is a requiement for spans to be created - please add the `httpServerIntegration` integration.', + 'It seems that you have manually added `httpServerSpansIntegration` without adding `httpServerIntegration`. This is a requiement for spans to be created - please add the `httpServerIntegration` integration.', ); } },