Fix storage documentation

The link was invalid.
This commit is contained in:
Alexis Sellier 2023-04-17 12:08:47 +02:00
parent a8f0329391
commit cb79ebef76
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ pub trait ReadRepository {
fn blob_at<'a>(&'a self, commit: Oid, path: &'a Path)
-> Result<git2::Blob<'a>, git_ext::Error>;
/// Validate all remotes with [`ReadStorage::validate`].
/// Validate all remotes with [`ReadRepository::validate_remote`].
fn validate(&self) -> Result<(), VerifyError> {
for (_, remote) in self.remotes()? {
self.validate_remote(&remote)?;