From c3c2f20a80fb47684ba653b4f590f1742fe2cf35 Mon Sep 17 00:00:00 2001 From: Tyler Miller Date: Tue, 21 Jan 2025 07:14:55 -0500 Subject: [PATCH] [nix/en] update to string interpolation (#5240) --- nix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix.md b/nix.md index c0e47b82..ac904788 100644 --- a/nix.md +++ b/nix.md @@ -86,7 +86,7 @@ with builtins; [ ("ab" + "cd") # String concatenation #=> "abcd" - # Antiquotation lets you embed values into strings. + # String interpolation (formerly known as "antiquotation") lets you embed values into strings. ("Your home directory is ${getEnv "HOME"}") #=> "Your home directory is /home/alice"