Hi,I just noticed what looks like two typos in the std.process.execute documentation :
1/
auto dmd = execute("dmd", "myapp.d");
should be
auto dmd = execute(["dmd", "myapp.d"]);
2/
if (status ==0)
should be
if (status !=0)
Should I file a bug report, or is there a way I can simply submit
a correction for review? Sorry if I missed the instructions
somewhere....
Thanks! -- Nikhil
