about summary refs log tree commit diff
path: root/tvix/eval/docs
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2023-06-15T11·40+0200
committersterni <sternenseemann@systemli.org>2023-06-15T19·40+0000
commit77b0dddc3d915509a929cd5595047e17eab47cf7 (patch)
treea6a7edd1f0bc277772d652ec07b8e1f1da2a5eca /tvix/eval/docs
parent3b8c9ec9c871c50855bb6fe78859ff25590b616b (diff)
chore(tvix/eval): fix markdown labeled link syntax r/6315
Change-Id: I639dc0801090eaba56b61858e28204b5a0e631b6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8784
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Autosubmit: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/docs')
-rw-r--r--tvix/eval/docs/language-issues.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/docs/language-issues.md b/tvix/eval/docs/language-issues.md
index 26401665bb..152e6594a1 100644
--- a/tvix/eval/docs/language-issues.md
+++ b/tvix/eval/docs/language-issues.md
@@ -16,7 +16,7 @@ maybe to get rid of the behavior in all implementations for good. Below is an
 
 * [Behaviour of nested attribute sets depends on definition order][i7111]
 * [Partially constructed attribute sets are observable during dynamic attr names construction][i7012]
-* [Nix parsers merges multiple attribute set literals for the same key incorrectly depending on definition order](i7115)
+* [Nix parsers merges multiple attribute set literals for the same key incorrectly depending on definition order][i7115]
 
 On the other hand, there is behavior that seems to violate one's expectation
 about the language at first, but has good enough reasons from an implementor's
@@ -38,7 +38,7 @@ Other behavior is just odd, surprising or underdocumented:
 
 * `builtins.foldl'` doesn't force the initial accumulator (but all other
   intermediate accumulator values), differing from e.g. Haskell, see
-  the [relevant PR discussion](p7158).
+  the [relevant PR discussion][p7158].
 
 [i7111]: https://github.com/NixOS/nix/issues/7111
 [i7012]: https://github.com/NixOS/nix/issues/7012