about summary refs log tree commit diff
path: root/src/libexpr/primops.cc
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-12-30T07·42+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-01-05T12·29+0100
commit29c0199d5c53cec59cfb44c94a4c9651b1c034b4 (patch)
tree18659b5bac4cddc4f9f35015db8b5bd76e637c8e /src/libexpr/primops.cc
parent5eb93556f16e3e36de8ea539821eed105ee64289 (diff)
manual: document builtins.functionArgs
The text is just a conversion of comment from src/libexpr/primops.cc
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index 5b9ecc018f..cf2d3d278f 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -1154,7 +1154,7 @@ static void prim_catAttrs(EvalState & state, const Pos & pos, Value * * args, Va
 
 /* Return a set containing the names of the formal arguments expected
    by the function `f'.  The value of each attribute is a Boolean
-   denoting whether has a default value.  For instance,
+   denoting whether the corresponding argument has a default value.  For instance,
 
       functionArgs ({ x, y ? 123}: ...)
    => { x = false; y = true; }