From 5b54bc12e3e568e14bac189d6d49961eb5a5889b Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 28 Jun 2022 10:16:19 +0200 Subject: [PATCH] chore(doc): Fix typo in JSDoc of parseBaggageHeader --- packages/utils/src/baggage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/utils/src/baggage.ts b/packages/utils/src/baggage.ts index 9c9b7405aea2..71e909a5f4e5 100644 --- a/packages/utils/src/baggage.ts +++ b/packages/utils/src/baggage.ts @@ -87,7 +87,7 @@ export function serializeBaggage(baggage: Baggage): string { /** * Parse a baggage header from a string or a string array and return a Baggage object * - * If @param includeThirdPartyEntries is set to true, thir party baggage entries are added to the Baggage object + * If @param includeThirdPartyEntries is set to true, third party baggage entries are added to the Baggage object * (This is necessary for merging potentially pre-existing baggage headers in outgoing requests with * our `sentry-` values) */