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 /src | |
parent | a654ae826914335043cac8e3e00194fda04e8651 (diff) | |
parent | e0c4a95611db4fde942b4e3ee4b6f8e07f956248 (diff) |
Merge pull request #7278 from fricklerhandwerk/antiquotation
antiquotation -> string interpolation
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/primops.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 7efe50324..7cad041af 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -1930,8 +1930,8 @@ static RegisterPrimOp primop_toFile({ "; ``` - Note that `${configFile}` is an - [antiquotation](language-values.md), so the result of the + Note that `${configFile}` is a + [string interpolation](language/values.md#type-string), so the result of the expression `configFile` (i.e., a path like `/nix/store/m7p7jfny445k...-foo.conf`) will be spliced into the resulting string. |