Typos in std.process.execute documentation?

Nikhil Padmanabhan nikhil.padmanabhan at gmail.com
Sun Dec 8 13:33:24 PST 2013


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


More information about the Digitalmars-d mailing list