Skip to content

Commit

Permalink
spelling: whose
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <[email protected]>
  • Loading branch information
jsoref committed Nov 28, 2023
1 parent 96590ad commit f27c32d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions csharp/src/Apache.Arrow/Flatbuf/FlatBuffers/Table.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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&lt;byte&gt;. If the vector is not present in the ByteBuffer,
// then an empty span will be returned.
public Span<T> __vector_as_span<T>(int offset, int elementSize) where T : struct
Expand All @@ -113,7 +113,7 @@ public Span<T> __vector_as_span<T>(int offset, int elementSize) where T : struct
return MemoryMarshal.Cast<byte, T>(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&lt;byte&gt;. If the vector is not present in the ByteBuffer,
// then a null value will be returned.
public ArraySegment<byte>? __vector_as_arraysegment(int offset)
Expand All @@ -130,7 +130,7 @@ public Span<T> __vector_as_span<T>(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<T>(int offset)
Expand Down

0 comments on commit f27c32d

Please sign in to comment.