Skip to content

Commit afe03a3

Browse files
authored
chore: Typo intergation -> integration (#20799)
There are also 3 typos in the changelog, not sure if we should change them too though
1 parent aac924e commit afe03a3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/core/test/lib/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ describe('getIntegrationsToSetup', () => {
7373
expect(integrations.map(i => i.name)).toEqual(expected);
7474
});
7575

76-
test('it uses passed integration over default intergation', () => {
76+
test('it uses passed integration over default integration', () => {
7777
const integrationDefault = new MockIntegration('ChaseSquirrels');
7878
const integration1 = new MockIntegration('ChaseSquirrels');
7979

packages/node-core/src/integrations/http/httpServerSpansIntegration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,13 @@ const _httpServerSpansIntegration = ((options: HttpServerSpansIntegrationOptions
249249

250250
if (client.getIntegrationByName('Http')) {
251251
debug.warn(
252-
'It seems that you have manually added `httpServerSpansIntergation` while `httpIntegration` is also present. Make sure to remove `httpIntegration` when adding `httpServerSpansIntegration`.',
252+
'It seems that you have manually added `httpServerSpansIntegration` while `httpIntegration` is also present. Make sure to remove `httpIntegration` when adding `httpServerSpansIntegration`.',
253253
);
254254
}
255255

256256
if (!client.getIntegrationByName('Http.Server')) {
257257
debug.error(
258-
'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.',
258+
'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.',
259259
);
260260
}
261261
},

0 commit comments

Comments
 (0)