diff --git a/radicle/src/storage.rs b/radicle/src/storage.rs index 91dacc94..d0aea081 100644 --- a/radicle/src/storage.rs +++ b/radicle/src/storage.rs @@ -296,7 +296,7 @@ pub trait ReadRepository { fn blob_at<'a>(&'a self, commit: Oid, path: &'a Path) -> Result, 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)?;