aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/error.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-06-25 09:56:32 -0600
committerBen Burdette <bburdette@gmail.com>2020-06-25 09:56:32 -0600
commitbc9e87412cb94f74d2515a00a591a7b5e33c90d7 (patch)
tree0f25ab29bbe0c91ba23e55c5aaf4795c4f4795db /src/libutil/error.cc
parent9ab808c92613b59a72a4d15cfda1adb6aa523e28 (diff)
'string' makes more sense in nix repl
Diffstat (limited to 'src/libutil/error.cc')
-rw-r--r--src/libutil/error.cc2
1 files changed, 1 insertions, 1 deletions
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: {