mirror of
https://github.com/NixOS/nix
synced 2025-07-12 19:05:08 +02:00
Merge pull request #13444 from roberth/fix-lessThan-doc
Fix `builtins.lessThan` doc
This commit is contained in:
commit
a783468333
1 changed files with 3 additions and 3 deletions
|
@ -4122,9 +4122,9 @@ static RegisterPrimOp primop_lessThan({
|
|||
.name = "__lessThan",
|
||||
.args = {"e1", "e2"},
|
||||
.doc = R"(
|
||||
Return `true` if the number *e1* is less than the number *e2*, and
|
||||
`false` otherwise. Evaluation aborts if either *e1* or *e2* does not
|
||||
evaluate to a number.
|
||||
Return `true` if the value *e1* is less than the value *e2*, and `false` otherwise.
|
||||
Evaluation aborts if either *e1* or *e2* does not evaluate to a number, string or path.
|
||||
Furthermore, it aborts if *e2* does not match *e1*'s type according to the aforementioned classification of number, string or path.
|
||||
)",
|
||||
.fun = prim_lessThan,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue