From dcc51bfb94931c145011c905bfcbc1e6023c8302 Mon Sep 17 00:00:00 2001 From: Konstantin Druzhkin Date: Wed, 7 Aug 2024 11:01:03 +0300 Subject: [PATCH] mention N-dimensional arrays --- docs/user-guide/concepts/data-types/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/concepts/data-types/overview.md b/docs/user-guide/concepts/data-types/overview.md index 184c3a697615..fe7b75f99246 100644 --- a/docs/user-guide/concepts/data-types/overview.md +++ b/docs/user-guide/concepts/data-types/overview.md @@ -18,7 +18,7 @@ from Arrow, with the exception of `String` (this is actually `LargeUtf8`), `Cate | | `Float64` | 64-bit floating point. | | Nested | `Struct` | A struct array is represented as a `Vec` and is useful to pack multiple/heterogeneous values in a single column. | | | `List` | A list array contains a child array containing the list values and an offset array. (this is actually Arrow `LargeList` internally). | -| | `Array` | A fixed-length homogeneous array. | +| | `Array` | A fixed-size multidimensional array. | | Temporal | `Date` | Date representation, internally represented as days since UNIX epoch encoded by a 32-bit signed integer. | | | `Datetime` | Datetime representation, internally represented as microseconds since UNIX epoch encoded by a 64-bit signed integer. | | | `Duration` | A timedelta type, internally represented as microseconds. Created when subtracting `Date/Datetime`. |