From af2520a07bd1bd538c8723398c89593677681a75 Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Tue, 21 Jan 2025 05:14:41 -0700 Subject: [PATCH] Update nix.md --- nix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix.md b/nix.md index 6459cfbe..ac904788 100644 --- a/nix.md +++ b/nix.md @@ -86,7 +86,7 @@ with builtins; [ ("ab" + "cd") # String concatenation #=> "abcd" - # String Interpolation (formerly known as "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"