diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-06-25 09:56:32 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-06-25 09:56:32 -0600 |
commit | bc9e87412cb94f74d2515a00a591a7b5e33c90d7 (patch) | |
tree | 0f25ab29bbe0c91ba23e55c5aaf4795c4f4795db /src | |
parent | 9ab808c92613b59a72a4d15cfda1adb6aa523e28 (diff) |
'string' makes more sense in nix repl
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/error.cc | 2 |
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: { |