From 02812ccf0046ddc3caa299ba4faea35047ed7d28 Mon Sep 17 00:00:00 2001 From: Matt Huggins Date: Fri, 30 Aug 2024 08:47:00 -0500 Subject: [PATCH] docs: Fix jsdocs param names --- packages/types/src/scope.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/types/src/scope.ts b/packages/types/src/scope.ts index ccce883d3366..aa51c69035f1 100644 --- a/packages/types/src/scope.ts +++ b/packages/types/src/scope.ts @@ -243,7 +243,7 @@ export interface Scope { /** * Capture a message for this scope. * - * @param exception The exception to capture. + * @param message The message to capture. * @param level An optional severity level to report the message with. * @param hint Optional additional data to attach to the Sentry event. * @returns the id of the captured message. @@ -253,7 +253,7 @@ export interface Scope { /** * Capture a Sentry event for this scope. * - * @param exception The event to capture. + * @param event The event to capture. * @param hint Optional additional data to attach to the Sentry event. * @returns the id of the captured event. */