Skip to content

Commit 17e641c

Browse files
committed
fix typos in docstrings
1 parent 5f1de41 commit 17e641c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/core/src/baseclient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import { IntegrationIndex, setupIntegrations } from './integration';
4040
* without a valid Dsn, the SDK will not send any events to Sentry.
4141
*
4242
* Before sending an event via the backend, it is passed through
43-
* {@link BaseClient.prepareEvent} to add SDK information and scope data
43+
* {@link BaseClient._prepareEvent} to add SDK information and scope data
4444
* (breadcrumbs and context). To add more custom information, override this
4545
* method and extend the resulting prepared event.
4646
*
@@ -428,7 +428,7 @@ export abstract class BaseClient<B extends Backend, O extends Options> implement
428428

429429
/**
430430
* This function adds all used integrations to the SDK info in the event.
431-
* @param sdkInfo The sdkInfo of the event that will be filled with all integrations.
431+
* @param event The event that will be filled with all integrations.
432432
*/
433433
protected _applyIntegrationsMetadata(event: Event): void {
434434
const sdkInfo = event.sdk;

0 commit comments

Comments
 (0)