@@ -33,7 +33,7 @@ const MAX_BREADCRUMBS = 100;
3333 * called by the client before an event will be sent.
3434 */
3535export class Scope implements ScopeInterface {
36- /** Flag if notifiying is happening. */
36+ /** Flag if notifying is happening. */
3737 protected _notifyingListeners : boolean = false ;
3838
3939 /** Callback for client to receive scope changes. */
@@ -403,7 +403,7 @@ export class Scope implements ScopeInterface {
403403 * Note that breadcrumbs will be added by the client.
404404 * Also if the event has already breadcrumbs on it, we do not merge them.
405405 * @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.
407407 * @hidden
408408 */
409409 public applyToEvent ( event : Event , hint ?: EventHint ) : PromiseLike < Event | null > {
@@ -427,7 +427,7 @@ export class Scope implements ScopeInterface {
427427 }
428428 // We want to set the trace context for normal events only if there isn't already
429429 // 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.
431431 if ( this . _span ) {
432432 event . contexts = { trace : this . _span . getTraceContext ( ) , ...event . contexts } ;
433433 const transactionName = this . _span . transaction ?. name ;
@@ -513,7 +513,7 @@ export class Scope implements ScopeInterface {
513513}
514514
515515/**
516- * Retruns the global event processors.
516+ * Returns the global event processors.
517517 */
518518function getGlobalEventProcessors ( ) : EventProcessor [ ] {
519519 /* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access */
0 commit comments