diff options
Diffstat (limited to 'tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix')
-rw-r--r-- | tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix b/tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix index abcd5366a..148e94954 100644 --- a/tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix +++ b/tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix @@ -1,5 +1,5 @@ # Checks that the nul value for the accumulator is not forced unconditionally. -# Some languages provide a foldl' that is strict in this argument, but Nix does not. +# Some languages provide a foldl' that is strict in this argument, but Nix language does not. builtins.foldl' (_: x: x) (throw "This is never forced") |