about summary refs log tree commit diff
path: root/tvix/castore/src/directoryservice
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-12-21T15·32+0200
committerclbot <clbot@tvl.fyi>2023-12-21T16·43+0000
commit783a1e314caa6345ab3efbfc878b7362f1e0e01b (patch)
tree0bfd26a1b4af8f75b824a2d5526e160ebc3303ee /tvix/castore/src/directoryservice
parent3fc4d295d5f343f1b50102617ca89e1e442c4f11 (diff)
docs(tvix/castore): fix reference r/7247
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
Diffstat (limited to 'tvix/castore/src/directoryservice')
-rw-r--r--tvix/castore/src/directoryservice/mod.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/tvix/castore/src/directoryservice/mod.rs b/tvix/castore/src/directoryservice/mod.rs
index d6350d48c0..a82c4d785d 100644
--- a/tvix/castore/src/directoryservice/mod.rs
+++ b/tvix/castore/src/directoryservice/mod.rs
@@ -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.