aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlincoln auster <lincolnauster@gmail.com>2022-02-07 08:35:50 -0700
committerGitHub <noreply@github.com>2022-02-07 08:35:50 -0700
commitb1abfcd0c247df7dc269ba8cb6b1e23d287c20ad (patch)
tree8ad30212dbc1a94c2d96a530aae890e4add3f2c8
parentc23501a3b24d84376086179756fefd399c2a7cbb (diff)
fix markup
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
-rw-r--r--src/nix/repl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/repl.cc b/src/nix/repl.cc
index 97ca39145..2c39fac91 100644
--- a/src/nix/repl.cc
+++ b/src/nix/repl.cc
@@ -624,7 +624,7 @@ void NixRepl::loadFile(const Path & path)
void NixRepl::loadFlake(const std::string & flakeRefS)
{
if (flakeRefS.empty())
- throw Error("cannot use `:load-flake` without a path specified. (Use . for the current working directory.)");
+ throw Error("cannot use ':load-flake' without a path specified. (Use '.' for the current working directory.)");
auto flakeRef = parseFlakeRef(flakeRefS, absPath("."), true);
if (evalSettings.pureEval && !flakeRef.input.isImmutable())