docs(tvix/store): address cargo doc warnings

Fix some broken link references.

Change-Id: I69c9b2b62af35bb777e4df1a01ba3181a368be47
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9214
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2023-09-03 11:02:19 +03:00 committed by flokli
parent 9bbda4421e
commit 583cdec3d8
5 changed files with 12 additions and 11 deletions

View file

@ -46,9 +46,9 @@ pub trait DirectoryService: Send + Sync {
/// Provides a handle to put a closure of connected [proto::Directory] elements.
///
/// The consumer can periodically call [put], starting from the leaves. Once
/// the root is reached, [close] can be called to retrieve the root digest (or
/// an error).
/// The consumer can periodically call [DirectoryPutter::put], starting from the
/// leaves. Once the root is reached, [DirectoryPutter::close] can be called to
/// retrieve the root digest (or an error).
pub trait DirectoryPutter {
/// Put a individual [proto::Directory] into the store.
/// Error semantics and behaviour is up to the specific implementation of