diff options
author | Raito Bezarius <raito@lix.systems> | 2024-05-14 02:05:08 +0200 |
---|---|---|
committer | Raito Bezarius <raito@lix.systems> | 2024-06-01 20:31:24 +0200 |
commit | b8cb7abcf08be01a291c970164a3f44dfca0ddbf (patch) | |
tree | 727912b4e44d9f68d4e26e9d11b0719af4a0c554 /tests/functional/lang | |
parent | 5312e60be6aba84fab91e6d82af0b1aeccdfe981 (diff) |
chore: rebrand Nix to Lix when it makes sense
Here's my guide so far:
$ rg '((?!(recursive).*) Nix
(?!(daemon|store|expression|Rocks!|Packages|language|derivation|archive|account|user|sandbox|flake).*))'
-g '!doc/' --pcre2
All items from this query have been tackled. For the documentation side:
that's for https://git.lix.systems/lix-project/lix/issues/162.
Additionally, all remaining references to github.com/NixOS/nix which
were not relevant were also replaced.
Fixes: https://git.lix.systems/lix-project/lix/issues/148.
Fixes: https://git.lix.systems/lix-project/lix/issues/162.
Change-Id: Ib3451fae5cb8ab8cd9ac9e4e4551284ee6794545
Signed-off-by: Raito Bezarius <raito@lix.systems>
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 |