diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-06-15 13:20:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-15 13:20:42 +0200 |
commit | 71e53c0c6a637a2880364805d717f4cabce4d9b5 (patch) | |
tree | 9ff9889a3f93abd239b086355ed7fd8b4e8bf68e | |
parent | 2e47e539538e4c87849d675939d20e91f65885a6 (diff) | |
parent | 098fbf6273bb5ee69b8dc1a4354d45d9a605541a (diff) |
Merge pull request #8522 from amjoseph-nixpkgs/pr/allowed-uris/typo
src/libexpr/eval.hh: fix typo
-rw-r--r-- | src/libexpr/eval.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index d6f4560a5..ea1f5975b 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -741,7 +741,7 @@ struct EvalSettings : Config If set to `true`, the Nix evaluator will not allow access to any files outside of the Nix search path (as set via the `NIX_PATH` environment variable or the `-I` option), or to URIs outside of - `allowed-uri`. The default is `false`. + `allowed-uris`. The default is `false`. )"}; Setting<bool> pureEval{this, false, "pure-eval", |