1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 23:11:16 +02:00

* Oops - "null" was displayed as "true".

This commit is contained in:
Eelco Dolstra 2010-08-27 12:10:56 +00:00
parent c67eccc26d
commit df50916e46

View file

@ -39,7 +39,7 @@ std::ostream & operator << (std::ostream & str, const Value & v)
str << v.path; // !!! escaping?
break;
case tNull:
str << "true";
str << "null";
break;
case tAttrs: {
str << "{ ";