[nix/en] fix: Spelling

This commit is contained in:
MillerApps 2025-01-21 04:12:58 -05:00
parent 67884752f0
commit 53bf1500de

2
nix.md
View File

@ -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"