From 44a05ac3854d6cd0fa65d8ffc0f6efe7abfc87ad Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 18 Oct 2023 00:55:12 -0400 Subject: Essentials, plugins, and http core experimental updates --- lib/Utils/src/Memory/MemoryUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Utils/src') diff --git a/lib/Utils/src/Memory/MemoryUtil.cs b/lib/Utils/src/Memory/MemoryUtil.cs index dc69e76..6af2392 100644 --- a/lib/Utils/src/Memory/MemoryUtil.cs +++ b/lib/Utils/src/Memory/MemoryUtil.cs @@ -660,7 +660,7 @@ namespace VNLib.Utils.Memory { if (offset + count > (ulong)block.LongLength) { - throw new ArgumentOutOfRangeException("The offset or count is outside of the range of the block of memory"); + throw new ArgumentOutOfRangeException(nameof(offset), "The offset or count is outside of the range of the block of memory"); } } -- cgit