diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-05-09 11:09:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 11:09:32 +0200 |
commit | 3ec979fa902c49e975a9af7dc2792fb197030e04 (patch) | |
tree | cc43ede2d1847adccf86ff311264e1afc394367e /src | |
parent | 059ae7f6c4b491d728714207c082a03d94c06744 (diff) | |
parent | 59d9551c25aa50cdfe65f6ce5cf9c07f9ff42736 (diff) |
Merge pull request #6505 from jtojnar/patch-3
libexpr: Fix manual link in error message
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index d29ff5543..8d67691f0 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -1590,7 +1590,7 @@ void EvalState::autoCallFunction(Bindings & args, Value & fun, Value & res) Nix attempted to evaluate a function as a top level expression; in this case it must have its arguments supplied either by default values, or passed explicitly with '--arg' or '--argstr'. See -https://nixos.org/manual/nix/stable/#ss-functions.)", symbols[i.name]); +https://nixos.org/manual/nix/stable/expressions/language-constructs.html#functions.)", symbols[i.name]); } } |