From bc9e87412cb94f74d2515a00a591a7b5e33c90d7 Mon Sep 17 00:00:00 2001 From: Ben Burdette Date: Thu, 25 Jun 2020 09:56:32 -0600 Subject: [PATCH] 'string' makes more sense in nix repl --- src/libutil/error.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/error.cc b/src/libutil/error.cc index 10a5300cb..49190eae1 100644 --- a/src/libutil/error.cc +++ b/src/libutil/error.cc @@ -197,7 +197,7 @@ void printAtPos(const string &prefix, const ErrPos &pos, std::ostream &out) } case foString: { out << prefix << ANSI_BLUE << "at: " << ANSI_YELLOW << showErrPos(pos) << - ANSI_BLUE << " from command line argument" << ANSI_NORMAL; + ANSI_BLUE << " from string" << ANSI_NORMAL; break; } case foStdin: {