mirror of
https://github.com/NixOS/nix
synced 2025-06-26 03:21:16 +02:00
* Oops - "null" was displayed as "true".
This commit is contained in:
parent
c67eccc26d
commit
df50916e46
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ std::ostream & operator << (std::ostream & str, const Value & v)
|
||||||
str << v.path; // !!! escaping?
|
str << v.path; // !!! escaping?
|
||||||
break;
|
break;
|
||||||
case tNull:
|
case tNull:
|
||||||
str << "true";
|
str << "null";
|
||||||
break;
|
break;
|
||||||
case tAttrs: {
|
case tAttrs: {
|
||||||
str << "{ ";
|
str << "{ ";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue