diff options
Diffstat (limited to 'tests/functional/lang')
-rw-r--r-- | tests/functional/lang/eval-okay-foldlStrict-lazy-initial-accumulator.nix | 2 | ||||
-rw-r--r-- | tests/functional/lang/eval-okay-fromTOML.nix | 2 |
2 files changed, 2 insertions, 2 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") diff --git a/tests/functional/lang/eval-okay-fromTOML.nix b/tests/functional/lang/eval-okay-fromTOML.nix index 963932689..4704b62cc 100644 --- a/tests/functional/lang/eval-okay-fromTOML.nix +++ b/tests/functional/lang/eval-okay-fromTOML.nix @@ -89,7 +89,7 @@ bool1 = true bool2 = false - # FIXME: not supported because Nix doesn't have a date/time type. + # FIXME: not supported because Nix language doesn't have a date/time type. #odt1 = 1979-05-27T07:32:00Z #odt2 = 1979-05-27T00:32:00-07:00 #odt3 = 1979-05-27T00:32:00.999999-07:00 |