From 336e0425848e97a0e77e8eea663f9cde18eebb49 Mon Sep 17 00:00:00 2001 From: Harry Scholes Date: Mon, 18 Sep 2023 10:32:33 +0300 Subject: [PATCH] Fix typo in docstring --- 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 7e07194012bf..2073b932c994 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`. ///