From 6c1d8c37a45172f127c899fe17758b750faae0c1 Mon Sep 17 00:00:00 2001 From: gstvg <28798827+gstvg@users.noreply.github.com> Date: Mon, 10 Feb 2025 17:36:31 -0300 Subject: [PATCH] fix: ArrayDataBuilder::build_unchecked docs (#7103) --- 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 dce1a853c22..e123d0cef90 100644 --- a/arrow-data/src/data.rs +++ b/arrow-data/src/data.rs @@ -1929,7 +1929,7 @@ impl ArrayDataBuilder { /// Creates an array data, without any validation /// - /// Note: This is shorthand for `self.with_skip_validation(true).build()` + /// Note: This is shorthand for `self.skip_validation(true).build().unwrap()` /// /// # Safety ///