about summary refs log tree commit diff
path: root/nix-repl.cc
diff options
context:
space:
mode:
authorScott Olson <scott@solson.me>2016-02-16T05·11-0600
committerScott Olson <scott@solson.me>2016-02-16T05·11-0600
commit30a7bfbebe8582ab02f2a9b659403a5b3e1c097b (patch)
tree3bc5789dcf5c90fdbfcb62d965184045040644df /nix-repl.cc
parent3cfb8d15846238d79b36de7e52a90a4d3afa4268 (diff)
Fix grammar.
Diffstat (limited to 'nix-repl.cc')
-rw-r--r--nix-repl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix-repl.cc b/nix-repl.cc
index 8569b5eb67bf..e753c637a755 100644
--- a/nix-repl.cc
+++ b/nix-repl.cc
@@ -316,7 +316,7 @@ bool NixRepl::processLine(string line)
         evalString(arg, v);
         DrvInfo drvInfo(state);
         if (!getDerivation(state, v, drvInfo, false))
-            throw Error("expression does not evaluation to a derivation, so I can't build it");
+            throw Error("expression does not evaluate to a derivation, so I can't build it");
         Path drvPath = drvInfo.queryDrvPath();
         if (drvPath == "" || !store->isValidPath(drvPath))
             throw Error("expression did not evaluate to a valid derivation");