From 37f7dfd01f3aad4bad6ae709b0add4c67fd3f1e2 Mon Sep 17 00:00:00 2001 From: Louis DeJardin Date: Sat, 19 Sep 2015 11:26:35 -0700 Subject: [PATCH] Typo in comments --- .../Infrastructure/MemoryPool2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPool2.cs b/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPool2.cs index a0fd3e4a7c..80705def58 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPool2.cs +++ b/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPool2.cs @@ -66,7 +66,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure // The requested minimumSize is actually larger then the usable memory of a single block. // Because this is the degenerate case, a one-time-use byte[] array and tracking object are allocated. // When this block tracking object is returned it is not added to the pool - instead it will be - // allowed to be garbace collected normally. + // allowed to be garbage collected normally. return MemoryPoolBlock2.Create( new ArraySegment(new byte[minimumSize]), dataPtr: IntPtr.Zero,