Skip to content

Commit 8310ca7

Browse files
committed
spelling
1 parent 0068cb5 commit 8310ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/utils/src/baggage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ export type BaggageObj = Partial<Record<AllowedBaggageKeys, string> & Record<str
88
* It is expected that users interact with baggage using the helpers methods:
99
* `createBaggage`, `getBaggageValue`, and `setBaggageValue`.
1010
*
11-
* Internally, the baggage data structure is a tuple of length 2, seperating baggage values
11+
* Internally, the baggage data structure is a tuple of length 2, separating baggage values
1212
* based on if they are related to Sentry or not. If the baggage values are
1313
* set/used by sentry, they will be stored in an object to be easily accessed.
1414
* If they are not, they are kept as a string to be only accessed when serialized
15-
* at baggage propogation time.
15+
* at baggage propagation time.
1616
*/
1717
export type Baggage = [BaggageObj, string];
1818

0 commit comments

Comments
 (0)