From 477b9f0d10a593e1bfdd221e92fe80a8a01e7d28 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 23 Sep 2024 15:57:11 -0400 Subject: [PATCH] Fix doc "bit width" to "byte width" (#6434) --- arrow-schema/src/datatype.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-schema/src/datatype.rs b/arrow-schema/src/datatype.rs index 32eb95aef8a4..ff5832dfa68c 100644 --- a/arrow-schema/src/datatype.rs +++ b/arrow-schema/src/datatype.rs @@ -622,7 +622,7 @@ impl DataType { } } - /// Returns the bit width of this type if it is a primitive type + /// Returns the byte width of this type if it is a primitive type /// /// Returns `None` if not a primitive type #[inline]