diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-10T21·57+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-11T14·12+0000 |
commit | 2dc93f8de26ba15106fe8a086bb85ca50c09860a (patch) | |
tree | 7298248634585895e93fcc32fadfab80f3e9d84b | |
parent | ead113cdfcc1598ec2fbed4108f2c820aaa7f231 (diff) |
docs(tvix/store): make upload_chunk docs a docstring r/5951
Change-Id: I6794e2a69b4907ab8d9ed2d55335c11db2c30c02 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8250 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz>
-rw-r--r-- | tvix/store/src/chunkservice/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/chunkservice/util.rs b/tvix/store/src/chunkservice/util.rs index cf644fa51ad4..fe8e4b350fe4 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, |