This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 175c776593 Fix typo in docstring (#4826)
175c776593 is described below
commit 175c7765939c0738defc736426c0b0a93b00bfa8
Author: Harry Scholes <[email protected]>
AuthorDate: Mon Sep 18 12:31:01 2023 +0300
Fix typo in docstring (#4826)
---
arrow-data/src/data.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arrow-data/src/data.rs b/arrow-data/src/data.rs
index 7e07194012..2073b932c9 100644
--- a/arrow-data/src/data.rs
+++ b/arrow-data/src/data.rs
@@ -174,7 +174,7 @@ pub(crate) fn into_buffers(
}
}
-/// An generic representation of Arrow array data which encapsulates common
attributes and
+/// A generic representation of Arrow array data which encapsulates common
attributes and
/// operations for Arrow array. Specific operations for different arrays types
(e.g.,
/// primitive, list, struct) are implemented in `Array`.
///