diff --git a/src/Sentry.Profiling/SampleProfilerSession.cs b/src/Sentry.Profiling/SampleProfilerSession.cs index cda158fffd..6192d2b821 100644 --- a/src/Sentry.Profiling/SampleProfilerSession.cs +++ b/src/Sentry.Profiling/SampleProfilerSession.cs @@ -17,7 +17,7 @@ internal class SampleProfilerSession : IDisposable private readonly TraceLogEventSource _eventSource; private readonly MutableTraceEventStackSource _stackSource; private readonly SampleProfilerTraceEventParser _sampleEventParser; - private readonly SymbolReader _symboReader; + private readonly SymbolReader _symbolReader; private readonly ActivityComputer _activityComputer; // private readonly StartStopActivityComputer _startStopActivityComputer; private readonly IDiagnosticLogger? _logger; @@ -30,8 +30,8 @@ private SampleProfilerSession(SentryStopwatch stopwatch, EventPipeSession sessio _logger = logger; _eventSource = eventSource; _sampleEventParser = new SampleProfilerTraceEventParser(_eventSource); - _symboReader = new SymbolReader(TextWriter.Null); - _activityComputer = new ActivityComputer(eventSource, _symboReader); + _symbolReader = new SymbolReader(TextWriter.Null); + _activityComputer = new ActivityComputer(eventSource, _symbolReader); // _startStopActivityComputer = new StartStopActivityComputer(eventSource, _activityComputer); _stopwatch = stopwatch; _stackSource = new MutableTraceEventStackSource(eventSource.TraceLog) @@ -141,7 +141,7 @@ public void Stop() _stopped = true; _session.Stop(); _session.Dispose(); - _symboReader.Dispose(); + _symbolReader.Dispose(); _eventSource.Dispose(); } catch (Exception ex)