From 08f38a3a4030e765f63e6b02e0094d33083c401b Mon Sep 17 00:00:00 2001 From: lexi Date: Thu, 25 Jan 2024 15:30:51 +0100 Subject: [PATCH] Fix typo in primops.cc (and therefore Nix docs) This also fixes the typo in the Nix docs at https://nixos.org/manual/nix/unstable/language/builtins. --- src/libexpr/primops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 5032e95cc..993ecceb2 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -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`.