@@ -33,7 +33,7 @@ const MAX_BREADCRUMBS = 100;
33
33
* called by the client before an event will be sent.
34
34
*/
35
35
export class Scope implements ScopeInterface {
36
- /** Flag if notifiying is happening. */
36
+ /** Flag if notifying is happening. */
37
37
protected _notifyingListeners : boolean = false ;
38
38
39
39
/** Callback for client to receive scope changes. */
@@ -403,7 +403,7 @@ export class Scope implements ScopeInterface {
403
403
* Note that breadcrumbs will be added by the client.
404
404
* Also if the event has already breadcrumbs on it, we do not merge them.
405
405
* @param event Event
406
- * @param hint May contain additional informartion about the original exception.
406
+ * @param hint May contain additional information about the original exception.
407
407
* @hidden
408
408
*/
409
409
public applyToEvent ( event : Event , hint ?: EventHint ) : PromiseLike < Event | null > {
@@ -427,7 +427,7 @@ export class Scope implements ScopeInterface {
427
427
}
428
428
// We want to set the trace context for normal events only if there isn't already
429
429
// a trace context on the event. There is a product feature in place where we link
430
- // errors with transaction and it relys on that.
430
+ // errors with transaction and it relies on that.
431
431
if ( this . _span ) {
432
432
event . contexts = { trace : this . _span . getTraceContext ( ) , ...event . contexts } ;
433
433
const transactionName = this . _span . transaction ?. name ;
@@ -513,7 +513,7 @@ export class Scope implements ScopeInterface {
513
513
}
514
514
515
515
/**
516
- * Retruns the global event processors.
516
+ * Returns the global event processors.
517
517
*/
518
518
function getGlobalEventProcessors ( ) : EventProcessor [ ] {
519
519
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access */
0 commit comments