aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2023-06-14 21:47:58 -0700
committerAdam Joseph <adam@westernsemico.com>2023-06-14 21:47:58 -0700
commit098fbf6273bb5ee69b8dc1a4354d45d9a605541a (patch)
tree9ff9889a3f93abd239b086355ed7fd8b4e8bf68e /src
parent2e47e539538e4c87849d675939d20e91f65885a6 (diff)
src/libexpr/eval.hh: fix typo
The option name is `allowed-uris`, not `allowed-uri`.
Diffstat (limited to 'src')
-rw-r--r--src/libexpr/eval.hh2
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",