From f27c32dea5b09b26cc80fa57dea136762e1c52fb Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 20 Nov 2023 23:57:43 -0500 Subject: [PATCH] spelling: whose Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- csharp/src/Apache.Arrow/Flatbuf/FlatBuffers/Table.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/src/Apache.Arrow/Flatbuf/FlatBuffers/Table.cs b/csharp/src/Apache.Arrow/Flatbuf/FlatBuffers/Table.cs index e2452e40eb8e9..860ba550713a6 100644 --- a/csharp/src/Apache.Arrow/Flatbuf/FlatBuffers/Table.cs +++ b/csharp/src/Apache.Arrow/Flatbuf/FlatBuffers/Table.cs @@ -91,7 +91,7 @@ public int __vector(int offset) } #if ENABLE_SPAN_T && (UNSAFE_BYTEBUFFER || NETSTANDARD2_1) - // Get the data of a vector whoses offset is stored at "offset" in this object as an + // Get the data of a vector whose offset is stored at "offset" in this object as an // Spant<byte>. If the vector is not present in the ByteBuffer, // then an empty span will be returned. public Span __vector_as_span(int offset, int elementSize) where T : struct @@ -113,7 +113,7 @@ public Span __vector_as_span(int offset, int elementSize) where T : struct return MemoryMarshal.Cast(bb.ToSpan(pos, len * elementSize)); } #else - // Get the data of a vector whoses offset is stored at "offset" in this object as an + // Get the data of a vector whose offset is stored at "offset" in this object as an // ArraySegment<byte>. If the vector is not present in the ByteBuffer, // then a null value will be returned. public ArraySegment? __vector_as_arraysegment(int offset) @@ -130,7 +130,7 @@ public Span __vector_as_span(int offset, int elementSize) where T : struct } #endif - // Get the data of a vector whoses offset is stored at "offset" in this object as an + // Get the data of a vector whose offset is stored at "offset" in this object as an // T[]. If the vector is not present in the ByteBuffer, then a null value will be // returned. public T[] __vector_as_array(int offset)