From 2c471afb09122433dc8137a9827e47ff8cedd6ff Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sat, 26 Oct 2024 19:28:57 +0100 Subject: [PATCH] Fix typo `commmon` -> `common` (#109248) --- src/coreclr/nativeaot/Runtime/eventpipeinternal.cpp | 2 +- .../src/System/Buffers/ArrayPoolEventSource.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/nativeaot/Runtime/eventpipeinternal.cpp b/src/coreclr/nativeaot/Runtime/eventpipeinternal.cpp index 3febb68b73e78..dca86d0138eec 100644 --- a/src/coreclr/nativeaot/Runtime/eventpipeinternal.cpp +++ b/src/coreclr/nativeaot/Runtime/eventpipeinternal.cpp @@ -161,7 +161,7 @@ EXTERN_C void QCALLTYPE EventPipeInternal_DeleteProvider(intptr_t provHandle) } } -// All the runtime redefine this enum, should move to commmon code. +// All the runtime redefine this enum, should move to common code. // https://github.com/dotnet/runtime/issues/87069 enum class ActivityControlCode { diff --git a/src/libraries/System.Private.CoreLib/src/System/Buffers/ArrayPoolEventSource.cs b/src/libraries/System.Private.CoreLib/src/System/Buffers/ArrayPoolEventSource.cs index ea1baec2be7dc..b2855224fc12e 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Buffers/ArrayPoolEventSource.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Buffers/ArrayPoolEventSource.cs @@ -108,7 +108,7 @@ internal unsafe void BufferAllocated(int bufferId, int bufferSize, int poolId, i /// /// Event raised when we attempt to free a buffer due to inactivity or memory pressure (by no longer - /// referencing it). It is possible (although not commmon) this buffer could be rented as we attempt + /// referencing it). It is possible (although not common) this buffer could be rented as we attempt /// to free it. A rent event before or after this event for the same ID, is a rare, but expected case. /// [Event(4, Level = EventLevel.Informational)]