From 67884752f0143687541cf0d56a7773b0b5212043 Mon Sep 17 00:00:00 2001
From: MillerApps <tylermiller4.github@proton.me>
Date: Mon, 20 Jan 2025 19:53:44 -0500
Subject: [PATCH] [nix/en] update to string interpolation

---
 nix.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix.md b/nix.md
index c0e47b82..7ff82f3c 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 (formly known as "Antiquotation") lets you embed values into strings.
   ("Your home directory is ${getEnv "HOME"}")
   #=> "Your home directory is /home/alice"