aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils/src
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-18 00:55:12 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-18 00:55:12 -0400
commit44a05ac3854d6cd0fa65d8ffc0f6efe7abfc87ad (patch)
tree31a1c2af8f264ca1c53128f91e22827cf0f5a1a0 /lib/Utils/src
parent62f9e126912fa9a620a361fb5b88d33506e096fb (diff)
Essentials, plugins, and http core experimental updates
Diffstat (limited to 'lib/Utils/src')
-rw-r--r--lib/Utils/src/Memory/MemoryUtil.cs2
1 files changed, 1 insertions, 1 deletions
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");
}
}