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"