diff options
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index 852e8aa11..6fcb2917c 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -158,7 +158,7 @@ string showType(ValueType type) { switch (type) { case tInt: return "an integer"; - case tBool: return "a boolean"; + case tBool: return "a Boolean"; case tString: return "a string"; case tPath: return "a path"; case tNull: return "null"; |