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] ....