diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-02-16T08·23+0700 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-02-16T08·26+0000 |
commit | d20a97ccb8e19d5076c23008dcfc80f5aedd8af0 (patch) | |
tree | 9d994ccbd34143d2cb7b86e581a567cc7a984c01 /web | |
parent | e9a3a79a1a33b6912479695291d9c2145b74aec4 (diff) |
docs(web/tvl): fix minor typo in Tvix blog post r/7528
Thanks, lukegb. Change-Id: I7b6af6c9069267936bef8dcb521b4b92708066e6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10929 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'web')
-rw-r--r-- | web/tvl/blog/2024-02-tvix-update.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/tvl/blog/2024-02-tvix-update.md b/web/tvl/blog/2024-02-tvix-update.md index 0e011c07e08b..ce9bbf547fa8 100644 --- a/web/tvl/blog/2024-02-tvix-update.md +++ b/web/tvl/blog/2024-02-tvix-update.md @@ -54,7 +54,7 @@ As an interesting side note, in C++ Nix `builtins.derivation` is not actually a builtin! It is a piece of [bundled Nix code][nixcpp-builtins-derivation], that massages some parameters and then calls the *actual* builtin: `derivationStrict`. We've decided to keep this setup, and implemented support in -in Tvix to have builtins defined in `.nix` source code. +Tvix to have builtins defined in `.nix` source code. These builtins return attribute sets with the previously mentioned `outPath` and `drvPath` fields. Implementing them correctly meant that we needed to implement |