Re: Typos in std.process.execute documentation?

2013-12-09 Thread Craig Dillabaugh
On Sunday, 8 December 2013 at 21:33:25 UTC, Nikhil Padmanabhan wrote: 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 (st

Typos in std.process.execute documentation?

2013-12-08 Thread Nikhil Padmanabhan
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 s