From a3d2fc057ad864fa825c055eeca47c66db7293ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amy=20de=20Buitl=C3=A9ir?= Date: Fri, 1 Dec 2023 20:19:12 +0000 Subject: [PATCH] initial commit --- source/nix-language/with.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/nix-language/with.adoc b/source/nix-language/with.adoc index 7af5c58..4e97c71 100644 --- a/source/nix-language/with.adoc +++ b/source/nix-language/with.adoc @@ -27,7 +27,8 @@ nix-repl> with animal; "Hello, " + name "Hello, Amy" .... -However, you can refer to it using the attribute set selection operaator `.`. +However, you can refer to the variable in the inner scope +using the attribute selection operator (`.`). [source] ....