diff --git a/object_store/src/parse.rs b/object_store/src/parse.rs index 1159e9a1af17..9b4896c5ac03 100644 --- a/object_store/src/parse.rs +++ b/object_store/src/parse.rs @@ -47,12 +47,12 @@ impl From for super::Error { } } -/// Recognises various URL formats, identifying the relevant [`ObjectStore`](crate::ObjectStore) +/// Recognises various URL formats, identifying the relevant [`ObjectStore`](ObjectStore) #[derive(Debug, Eq, PartialEq)] enum ObjectStoreScheme { - /// Url corresponding to [`LocalFileSystem`](crate::local::LocalFileSystem) + /// Url corresponding to [`LocalFileSystem`](LocalFileSystem) Local, - /// Url corresponding to [`InMemory`](crate::memory::InMemory) + /// Url corresponding to [`InMemory`](InMemory) Memory, /// Url corresponding to [`AmazonS3`](crate::aws::AmazonS3) AmazonS3,