This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2142ffd  Update dist/ for commit 
9ce719a7c73b7e6b45422dc3d1373213640f2fae
2142ffd is described below

commit 2142ffd2d361f2e40f3b74d8a18b71d4f74b6bd4
Author: GitHub Actions <[email protected]>
AuthorDate: Wed Aug 16 01:23:40 2023 +0000

    Update dist/ for commit 9ce719a7c73b7e6b45422dc3d1373213640f2fae
---
 dist/nanoarrow_ipc.c | 8 ++++----
 dist/nanoarrow_ipc.h | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dist/nanoarrow_ipc.c b/dist/nanoarrow_ipc.c
index fc665a2..1bf8473 100644
--- a/dist/nanoarrow_ipc.c
+++ b/dist/nanoarrow_ipc.c
@@ -20327,7 +20327,7 @@ struct ArrowIpcField {
   // array is scratch space for any intermediary allocations (i.e., it is 
never moved
   // to the user).
   struct ArrowArray* array;
-  // The cumulative number of buffers preceeding this node.
+  // The cumulative number of buffers preceding this node.
   int64_t buffer_offset;
 };
 
@@ -21339,7 +21339,7 @@ ArrowErrorCode ArrowIpcDecoderDecodeHeader(struct 
ArrowIpcDecoder* decoder,
                     ns(MessageHeader_type_name(decoder->message_type)));
       return ENOTSUP;
     default:
-      ArrowErrorSet(error, "Unnown message type: %d", 
(int)(decoder->message_type));
+      ArrowErrorSet(error, "Unknown message type: %d", 
(int)(decoder->message_type));
       return EINVAL;
   }
 
@@ -21841,7 +21841,7 @@ static ArrowErrorCode 
ArrowIpcDecoderDecodeArrayInternal(
 
   // If validation is going to happen it has already occurred; however, the 
part of
   // ArrowArrayFinishBuilding() that allocates a data buffer if the data 
buffer is
-  // NULL (required for compatability with Arrow <= 9.0.0) assumes CPU data 
access
+  // NULL (required for compatibility with Arrow <= 9.0.0) assumes CPU data 
access
   // and thus needs a validation level >= default.
   if (validation_level >= NANOARROW_VALIDATION_LEVEL_DEFAULT) {
     NANOARROW_RETURN_NOT_OK(
@@ -22172,7 +22172,7 @@ static int ArrowIpcArrayStreamReaderNextHeader(
   if (bytes_read == 0) {
     // The caller might not use this error message (e.g., if the end of the 
stream
     // is one of the valid outcomes) but we set the error anyway in case it 
gets
-    // propagated higher (e.g., if the stream is emtpy and there's no schema 
message)
+    // propagated higher (e.g., if the stream is empty and there's no schema 
message)
     ArrowErrorSet(&private_data->error, "No data available on stream");
     return ENODATA;
   } else if (bytes_read != 8) {
diff --git a/dist/nanoarrow_ipc.h b/dist/nanoarrow_ipc.h
index 4078708..84d0885 100644
--- a/dist/nanoarrow_ipc.h
+++ b/dist/nanoarrow_ipc.h
@@ -222,7 +222,7 @@ ArrowErrorCode ArrowIpcDecoderVerifyHeader(struct 
ArrowIpcDecoder* decoder,
 /// decoder.codec is set and a successful call can be followed by a call to
 /// ArrowIpcDecoderDecodeArray().
 ///
-/// In almost all cases this should be preceeded by a call to
+/// In almost all cases this should be preceded by a call to
 /// ArrowIpcDecoderVerifyHeader() to ensure decoding does not access data 
outside of the
 /// specified buffer.
 ///

Reply via email to