From de97f110d7312dd556f284318e98ae6fec7d72b6 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Wed, 15 Nov 2023 09:47:51 +0100 Subject: [PATCH] chore: Fix typo in SentryTracer --- Sources/Sentry/SentryTracer.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Sentry/SentryTracer.m b/Sources/Sentry/SentryTracer.m index 5fd8b6d0274..04f21900122 100644 --- a/Sources/Sentry/SentryTracer.m +++ b/Sources/Sentry/SentryTracer.m @@ -277,7 +277,7 @@ - (void)deadlineTimerFired - (void)cancelDeadlineTimer { - // If the main thread is busy the tracer could be dealloc ated in between. + // If the main thread is busy the tracer could be deallocated in between. __weak SentryTracer *weakSelf = self; // The timer must be invalidated from the thread on which the timer was installed, see