about summary refs log tree commit diff
path: root/tvix/store/docs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/docs')
-rw-r--r--tvix/store/docs/api.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/tvix/store/docs/api.md b/tvix/store/docs/api.md
index 9d2cefa142e3..549ea703aec8 100644
--- a/tvix/store/docs/api.md
+++ b/tvix/store/docs/api.md
@@ -134,11 +134,11 @@ There's three different services:
 `BlobService` can be used to store and retrieve blobs of data, used to host
 regular file contents.
 
-It is content-addressed, using [blake3](https://github.com/BLAKE3-team/BLAKE3)
+It is content-addressed, using [blake3][blake3]
 as a hashing function.
 
 As blake3 is a tree hash, there's an opportunity to do
-[verified streaming](https://github.com/oconnor663/bao) of parts of the file,
+[verified streaming][bao] of parts of the file,
 which doesn't need to trust any more information than the root hash itself.
 Future extensions of the `BlobService` protocol will enable this.
 
@@ -270,6 +270,7 @@ access, which is very useful in remote builder scenarios.
 
 
 [blake3]: https://github.com/BLAKE3-team/BLAKE3
+[bao]: https://github.com/oconnor663/bao
 [^input-addressed]: Nix hashes the A-Term representation of a .drv, after doing
                     some replacements on refered Input Derivations to calculate
                     output paths.