Skip to content

Commit 098b47c

Browse files
committed
Fix comment
1 parent cd9958a commit 098b47c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Ramstack.Structures/Internal/JitHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static ref readonly char GetRawStringData(this string text, int index) =>
3030
public static ref T GetRawArrayData<T>(this T[] array, int index)
3131
{
3232
// It's valid for a ref to point just past the end of an array, and it'll
33-
// be properly GC-tracked. (Though dereferencing it may result in undefined behavior.)
33+
// be properly GC-tracked. (Though dereferencing it may result in undefined behavior)
3434
return ref Unsafe.Add(ref MemoryMarshal.GetArrayDataReference(array), (nint)(uint)index);
3535
}
3636
}

0 commit comments

Comments
 (0)