Merge pull request #9849 from 13x1/patch-1

Fix typo in primops.cc (and therefore Nix docs)
This commit is contained in:
Théophane Hufschmitt 2024-01-25 16:11:49 +01:00 committed by GitHub
commit 8df68a213f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1878,7 +1878,7 @@ static RegisterPrimOp primop_outputOf({
For instance,
```nix
builtins.outputOf
(builtins.outputOf myDrv "out)
(builtins.outputOf myDrv "out")
"out"
```
will return a placeholder for the output of the output of `myDrv`.