From d1a9368c2981b7f4b0171ba06a46dfb44096ff13 Mon Sep 17 00:00:00 2001 From: Jia-Xuan Liu Date: Sun, 2 Jun 2024 23:23:26 +0800 Subject: [PATCH] fix typo --- datafusion/core/src/datasource/file_format/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/core/src/datasource/file_format/mod.rs b/datafusion/core/src/datasource/file_format/mod.rs index 42b3be407f36..a81043bab43b 100644 --- a/datafusion/core/src/datasource/file_format/mod.rs +++ b/datafusion/core/src/datasource/file_format/mod.rs @@ -121,7 +121,7 @@ pub async fn get_object_store( object_storage::get_object_store(state, scheme, url, table_options).await } -/// Get the object store for the given scheme and url. Only available when targeting wasm32. +/// Get the object store for the given scheme and url. Only available when not targeting wasm32. #[cfg(target_arch = "wasm32")] pub async fn get_object_store( state: &SessionState,