diff options
-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, |