Skip to content

Commit e5b4adf

Browse files
committed
fix typo
1 parent dea36e7 commit e5b4adf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

MIGRATION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ The following list shows how integrations should be migrated:
192192
| `new OnUncaughtException()` | `onUncaughtExceptionIntegration()` | `@sentry/node` |
193193
| `new OnUnhandledRejection()` | `onUnhandledRejectionIntegration()` | `@sentry/node` |
194194
| `new LocalVariables()` | `localVariablesIntegration()` | `@sentry/node` |
195-
| `new Spotlight()` | `spotlightIntergation()` | `@sentry/node` |
196-
| `new Anr()` | `anrIntergation()` | `@sentry/node` |
195+
| `new Spotlight()` | `spotlightIntegration()` | `@sentry/node` |
196+
| `new Anr()` | `anrIntegration()` | `@sentry/node` |
197197
| `new Hapi()` | `hapiIntegration()` | `@sentry/node` |
198198
| `new Undici()` | `nativeNodeFetchIntegration()` | `@sentry/node` |
199199
| `new Http()` | `httpIntegration()` | `@sentry/node` |

packages/astro/test/client/sdk.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ describe('Sentry client SDK', () => {
122122
expect(options.finalTimeout).toEqual(10);
123123
});
124124

125-
it('Overrides the automatically default BrowserTracing instance with a a user-provided browserTracingIntergation instance', () => {
125+
it('Overrides the automatically default BrowserTracing instance with a a user-provided browserTracingIntegration instance', () => {
126126
init({
127127
dsn: 'https://[email protected]/1337',
128128
integrations: [

packages/deno/src/integrations/globalhandlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const globalHandlersIntegration = defineIntegration(_globalHandlersIntegr
4848

4949
/**
5050
* Global handlers.
51-
* @deprecated Use `globalHandlersIntergation()` instead.
51+
* @deprecated Use `globalHandlersIntegration()` instead.
5252
*/
5353
// eslint-disable-next-line deprecation/deprecation
5454
export const GlobalHandlers = convertIntegrationFnToClass(

packages/integration-shims/src/Feedback.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { consoleSandbox } from '@sentry/utils';
66
* It is needed in order for the CDN bundles to continue working when users add/remove feedback
77
* from it, without changing their config. This is necessary for the loader mechanism.
88
*
9-
* @deprecated Use `feedbackIntergation()` instead.
9+
* @deprecated Use `feedbackIntegration()` instead.
1010
*/
1111
class FeedbackShim implements Integration {
1212
/**

0 commit comments

Comments
 (0)