diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-27T08·17+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-27T08·44+0000 |
commit | 93f3964cbcbeb859a91714671bf0b87fb3b82a06 (patch) | |
tree | f6d2e6c740c7f595de6590d9bc770bd3cca55cc8 /tvix/store/src/blobreader.rs | |
parent | bde10682a5cfca0a1883d22115b1292bb69a5bab (diff) |
docs(tvix/store/blobreader): fix docstring r/6042
Change-Id: Ia8ce1dd1663663903b9f60feada12e6a16fb4af2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8353 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/store/src/blobreader.rs')
-rw-r--r-- | tvix/store/src/blobreader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/blobreader.rs b/tvix/store/src/blobreader.rs index 4733a29a364d..ff0efdf15237 100644 --- a/tvix/store/src/blobreader.rs +++ b/tvix/store/src/blobreader.rs @@ -33,7 +33,7 @@ impl<'a, CS: ChunkService> BlobReader<'a, CS> { /// a chunk). /// /// If it arrives at the end of the chunk, sets it back to None. - /// Returns a io::Result<usize> of the bytes read from the chunk. + /// Returns a [std::io::Result<usize>] of the bytes read from the chunk. fn read_from_current_chunk<W: std::io::Write>( &mut self, m: usize, |