This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new 6c1d8c37a4 fix: ArrayDataBuilder::build_unchecked docs (#7103)
6c1d8c37a4 is described below

commit 6c1d8c37a45172f127c899fe17758b750faae0c1
Author: gstvg <[email protected]>
AuthorDate: Mon Feb 10 17:36:31 2025 -0300

    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 dce1a853c2..e123d0cef9 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
     ///

Reply via email to