about summary refs log tree commit diff
path: root/tvix/store/src/blobservice/memory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src/blobservice/memory.rs')
-rw-r--r--tvix/store/src/blobservice/memory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/blobservice/memory.rs b/tvix/store/src/blobservice/memory.rs
index 244055258e..8963deefd4 100644
--- a/tvix/store/src/blobservice/memory.rs
+++ b/tvix/store/src/blobservice/memory.rs
@@ -54,7 +54,7 @@ impl BlobService for MemoryBlobService {
 pub struct MemoryBlobWriter {
     db: Arc<RwLock<HashMap<B3Digest, Vec<u8>>>>,
 
-    /// 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.