about summary refs log tree commit diff
path: root/nix-repl.cc
diff options
context:
space:
mode:
authorScott Olson <scott@solson.me>2016-02-18T13·04-0600
committerScott Olson <scott@solson.me>2016-02-18T13·04-0600
commit56c7f0e8c581c66a968fdae681e9c417817e28d0 (patch)
treed565ad6ded0f236a92e132335573e84f2bd8e1db /nix-repl.cc
parent60ba98242f7c976e4e14113d28bced03b32db4f5 (diff)
Fix typo in comment.
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 e52c3b257a7f..3834e572a2d8 100644
--- a/nix-repl.cc
+++ b/nix-repl.cc
@@ -99,7 +99,7 @@ void NixRepl::mainLoop(const Strings & files)
     string input;
 
     while (true) {
-        // When continuing input from a previous, don't print a prompt, just align to the same
+        // When continuing input from previous lines, don't print a prompt, just align to the same
         // number of chars as the prompt.
         const char * prompt = input.empty() ? "nix-repl> " : "          ";
         if (!getLine(input, prompt)) {