Skip to content

Commit

Permalink
Fix object_store docs (#4947)
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold authored Oct 17, 2023
1 parent fa7a61a commit 511ac44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions object_store/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ impl From<Error> for super::Error {
}
}

/// Recognises various URL formats, identifying the relevant [`ObjectStore`](crate::ObjectStore)
/// Recognises various URL formats, identifying the relevant [`ObjectStore`]
#[derive(Debug, Eq, PartialEq)]
enum ObjectStoreScheme {
/// Url corresponding to [`LocalFileSystem`](crate::local::LocalFileSystem)
/// Url corresponding to [`LocalFileSystem`]
Local,
/// Url corresponding to [`InMemory`](crate::memory::InMemory)
/// Url corresponding to [`InMemory`]
Memory,
/// Url corresponding to [`AmazonS3`](crate::aws::AmazonS3)
AmazonS3,
Expand Down

0 comments on commit 511ac44

Please sign in to comment.