Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/tutorials/first-steps/nix-language.md
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,7 @@ pkgs.lib.strings.removePrefix "no " "no true scotsman"
To make this function produce a result, you can write it to a file (e.g. `file.nix`) and pass it an argument through `nix-instantiate`:

```shell-session
$ nix-instantiate --eval test.nix --arg pkgs 'import <nixpkgs> {}'
$ nix-instantiate --eval file.nix --arg pkgs 'import <nixpkgs> {}'
"true scotsman"
```

Expand Down