lib.trivial: Change comment type before concat function

C-style comment was being picked up by nixdoc as a documentation comment for the function.
This commit is contained in:
Jan Tojnar 2022-01-30 01:53:24 +01:00
parent d4ecaf699e
commit 2f012d93ed

View File

@ -61,11 +61,11 @@ rec {
pipe = val: functions:
let reverseApply = x: f: f x;
in builtins.foldl' reverseApply val functions;
/* note please dont add a function like `compose = flip pipe`.
This would confuse users, because the order of the functions
in the list is not clear. With pipe, its obvious that it
goes first-to-last. With `compose`, not so much.
*/
# note please dont add a function like `compose = flip pipe`.
# This would confuse users, because the order of the functions
# in the list is not clear. With pipe, its obvious that it
# goes first-to-last. With `compose`, not so much.
## Named versions corresponding to some builtin operators.