Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/OpenTelemetry/Trace/ExceptionProcessor.cs
  • Loading branch information
utpilla authored Jul 28, 2023
commit 1fdd8ee1483144afead5d9533c98b65594d64120
2 changes: 1 addition & 1 deletion src/OpenTelemetry/Trace/ExceptionProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ExceptionProcessor()
#if NET6_0_OR_GREATER
this.fnGetExceptionPointers = Marshal.GetExceptionPointers;
#else
// When running on netstandard and similar the Marshal class it no part of the netstandard API
// When running on netstandard or similar the Marshal class is not a part of the netstandard API
// but it still most likely available in the underlying framework, so use reflection to get to it.
try
{
Expand Down