From 56c7f0e8c581c66a968fdae681e9c417817e28d0 Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Thu, 18 Feb 2016 07:04:55 -0600 Subject: [PATCH] Fix typo in comment. --- nix-repl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix-repl.cc b/nix-repl.cc index e52c3b257..3834e572a 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)) {