docs(tvix/castore): fix reference
Change-Id: I00b1d56d58c4d3779b57ab0056cff1c7e6053b9b Reviewed-on: https://cl.tvl.fyi/c/depot/+/10401 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: edef <edef@edef.eu> Tested-by: BuildkiteCI
This commit is contained in:
parent
3fc4d295d5
commit
783a1e314c
1 changed files with 4 additions and 3 deletions
|
@ -57,9 +57,10 @@ pub trait DirectoryService: Send + Sync {
|
|||
/// leaves. Once the root is reached, [DirectoryPutter::close] can be called to
|
||||
/// retrieve the root digest (or an error).
|
||||
///
|
||||
/// DirectoryPutters might be created without a single [put], and then dropped
|
||||
/// without calling [close], for example when ingesting a path that ends up not
|
||||
/// pointing to a directory, but a single file or symlink.
|
||||
/// DirectoryPutters might be created without a single [DirectoryPutter::put],
|
||||
/// and then dropped without calling [DirectoryPutter::close],
|
||||
/// for example when ingesting a path that ends up not pointing to a directory,
|
||||
/// but a single file or symlink.
|
||||
#[async_trait]
|
||||
pub trait DirectoryPutter: Send {
|
||||
/// Put a individual [proto::Directory] into the store.
|
||||
|
|
Loading…
Reference in a new issue