From 7340be0d95ae1df37b8edd9b7920627e1261ece6 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 15 Sep 2023 15:40:33 -0700 Subject: [PATCH] Clean up old unnecessary docstring --- rust/src/storage/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rust/src/storage/mod.rs b/rust/src/storage/mod.rs index 6d4bd080e0..fd316b1212 100644 --- a/rust/src/storage/mod.rs +++ b/rust/src/storage/mod.rs @@ -212,8 +212,6 @@ impl ObjectStore for DeltaObjectStore { } /// Perform a get request with options - /// - /// Note: options.range will be ignored if [`GetResult::File`] async fn get_opts(&self, location: &Path, options: GetOptions) -> ObjectStoreResult { self.storage.get_opts(location, options).await }