From 32c6afde6f390f9566b0c726eff630f2e28b3136 Mon Sep 17 00:00:00 2001 From: Matthijs Brobbel Date: Tue, 17 Jun 2025 09:47:58 +0200 Subject: [PATCH] chore: fix a typo in `ExtensionType::supports_data_type` docs --- arrow-schema/src/extension/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-schema/src/extension/mod.rs b/arrow-schema/src/extension/mod.rs index c5119873af0c..92b0024bfd2d 100644 --- a/arrow-schema/src/extension/mod.rs +++ b/arrow-schema/src/extension/mod.rs @@ -247,7 +247,7 @@ pub trait ExtensionType: Sized { /// - deserialization of metadata fails fn deserialize_metadata(metadata: Option<&str>) -> Result; - /// Returns `OK())` iff the given data type is supported by this extension + /// Returns `Ok(())` iff the given data type is supported by this extension /// type. fn supports_data_type(&self, data_type: &DataType) -> Result<(), ArrowError>;