From 612277f37620c54e5ef9ef98bd7a7998689914df Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com> Date: Sat, 30 Dec 2023 00:22:45 +0000 Subject: [PATCH] Update arrow-ipc/src/reader.rs Co-authored-by: Liang-Chi Hsieh --- arrow-ipc/src/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-ipc/src/reader.rs b/arrow-ipc/src/reader.rs index 4a20bbad028e..8ac3a387d5bb 100644 --- a/arrow-ipc/src/reader.rs +++ b/arrow-ipc/src/reader.rs @@ -522,7 +522,7 @@ fn parse_message(buf: &[u8]) -> Result { .map_err(|err| ArrowError::ParseError(format!("Unable to get root as message: {err:?}"))) } -/// Read the footer length from the last 10 bytes of a file +/// Read the footer length from the last 10 bytes of an Arrow IPC file /// /// Expects a 4 byte footer length followed by `b"ARROW1"` pub fn read_footer_length(buf: [u8; 10]) -> Result {