about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-03-05T13·13+0100
committerflokli <flokli@flokli.de>2023-03-05T14·42+0000
commitdb8cebe0b43746955317d3f5dde8b8c53dc34f81 (patch)
tree5a7afc2f25dcc9700e337657cfe76b20afd10384
parentbfb787a6c5dc6ccd9a25efc015770f20702c2a55 (diff)
docs(tvix/store): move link hrefs to bottom r/5889
Change-Id: Id8e32ee4de98fbe48266d417279194cd93e968cb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8222
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
-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 9d2cefa142..549ea703ae 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.