From 982f3c4e8d6306ba82b2018fce03fb144c62df87 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Mon, 31 Jul 2023 11:23:15 +0200 Subject: [PATCH] doc --- packages/browser/src/integrations/contextlines.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/browser/src/integrations/contextlines.ts b/packages/browser/src/integrations/contextlines.ts index 4dc7e92bd57c..98dad4269d62 100644 --- a/packages/browser/src/integrations/contextlines.ts +++ b/packages/browser/src/integrations/contextlines.ts @@ -14,15 +14,15 @@ interface ContextLinesOptions { } /** - * Collects source context lines around the line of a stackframe pointing to JS embedded in + * Collects source context lines around the lines of stackframes pointing to JS embedded in * the current page's HTML. * - * Use this integration if you have inline JS code in HTML pages that can't be accessed - * by our backend (e.g. due to a login-protected page). - * - * This integratino DOES NOT work for stack frames pointing to JS files that are loaded by the browser. + * This integration DOES NOT work for stack frames pointing to JS files that are loaded by the browser. * For frames pointing to files, context lines are added during ingestion and symbolication * by attempting to download the JS files to the Sentry backend. + * + * Use this integration if you have inline JS code in HTML pages that can't be accessed + * by our backend (e.g. due to a login-protected page). */ export class ContextLines implements Integration { /**