about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/store/src/chunkservice/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/chunkservice/util.rs b/tvix/store/src/chunkservice/util.rs
index cf644fa51a..fe8e4b350f 100644
--- a/tvix/store/src/chunkservice/util.rs
+++ b/tvix/store/src/chunkservice/util.rs
@@ -4,7 +4,7 @@ use crate::Error;
 
 use super::ChunkService;
 
-// upload a chunk to the chunk service, and return its digest (or an error) when done.
+/// uploads a chunk to a chunk service, and returns its digest (or an error) when done.
 #[instrument(skip_all, err)]
 pub fn upload_chunk<CS: ChunkService>(
     chunk_service: &CS,