diff --git a/Samples/PinnedMemoryCopy/Program.cs b/Samples/PinnedMemoryCopy/Program.cs index 4cb4d1310..2f73ad4b2 100644 --- a/Samples/PinnedMemoryCopy/Program.cs +++ b/Samples/PinnedMemoryCopy/Program.cs @@ -1,6 +1,6 @@ // --------------------------------------------------------------------------------------- // ILGPU Samples -// Copyright (c) 2021 ILGPU Project +// Copyright (c) 2021-2023 ILGPU Project // www.ilgpu.net // // File: Program.cs @@ -20,7 +20,7 @@ namespace PinnedMemoryCopy class Program { /// - /// Uses GCHandle to allocated pinned allocate pinned chunks of memory in CPU host memory. + /// Uses GCHandle to allocate pinned chunks of memory in CPU host memory. /// /// The current accelerator. /// The number of elements to copy. @@ -53,7 +53,7 @@ static void PerformPinnedCopyUsingGCHandle(Accelerator accelerator, int dataSize #if NET5_0_OR_GREATER /// - /// Uses System.GC.AllocateArray to allocated pinned allocate pinned chunks of memory in CPU host memory. + /// Uses System.GC.AllocateArray to allocate pinned chunks of memory in CPU host memory. /// /// The current accelerator. /// The number of elements to copy.