about summary refs log tree commit diff
path: root/tvix/store/src/blobservice/sled.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src/blobservice/sled.rs')
-rw-r--r--tvix/store/src/blobservice/sled.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/blobservice/sled.rs b/tvix/store/src/blobservice/sled.rs
index 22dcd757f2..bff50ff3eb 100644
--- a/tvix/store/src/blobservice/sled.rs
+++ b/tvix/store/src/blobservice/sled.rs
@@ -82,7 +82,7 @@ impl BlobService for SledBlobService {
 pub struct SledBlobWriter {
     db: sled::Db,
 
-    /// Contains the Vec and hasher, or None if already closed
+    /// Contains the buffer Vec and hasher, or None if already closed
     writers: Option<(Vec<u8>, blake3::Hasher)>,
 
     /// The digest that has been returned, if we successfully closed.