diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-01-02 15:03:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 15:03:45 +0100 |
commit | 34a31b33f178b81f5071c06a086963981f3b512e (patch) | |
tree | a423930341c13693cfa7633a20ce73e28dd7ec8e /tests/lang | |
parent | a654ae826914335043cac8e3e00194fda04e8651 (diff) | |
parent | e0c4a95611db4fde942b4e3ee4b6f8e07f956248 (diff) |
Merge pull request #7278 from fricklerhandwerk/antiquotation
antiquotation -> string interpolation
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/eval-okay-ind-string.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-ind-string.nix b/tests/lang/eval-okay-ind-string.nix index 1669dc064..95d59b508 100644 --- a/tests/lang/eval-okay-ind-string.nix +++ b/tests/lang/eval-okay-ind-string.nix @@ -110,7 +110,7 @@ let And finally to interpret \n etc. as in a string: ''\n, ''\r, ''\t. ''; - # Regression test: antiquotation in '${x}' should work, but didn't. + # Regression test: string interpolation in '${x}' should work, but didn't. s15 = let x = "bla"; in '' foo '${x}' |