From cb79ebef769761f61faee142600226fcce950add Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Mon, 17 Apr 2023 12:08:47 +0200 Subject: [PATCH] Fix storage documentation The link was invalid. --- radicle/src/storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)?;