From 53bf1500de39d6d31ec2535a300c84fed38dc1aa Mon Sep 17 00:00:00 2001 From: MillerApps <tylermiller4.github@proton.me> Date: Tue, 21 Jan 2025 04:12:58 -0500 Subject: [PATCH] [nix/en] fix: Spelling --- nix.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix.md b/nix.md index 7ff82f3c..6459cfbe 100644 --- a/nix.md +++ b/nix.md @@ -86,7 +86,7 @@ with builtins; [ ("ab" + "cd") # String concatenation #=> "abcd" - # String Interpolation (formly 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"