Skip to content

Commit

Permalink
Merge pull request #1763 from npadmana/typo_std_process_execute_doc
Browse files Browse the repository at this point in the history
Fix completely trivial typo in std.process.execute documentation
  • Loading branch information
monarchdodra committed Dec 10, 2013
2 parents fb87a24 + cbe9a79 commit db35781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/process.d
Expand Up @@ -1883,7 +1883,7 @@ auto dmd = execute(["dmd", "myapp.d"]);
if (dmd.status != 0) writeln("Compilation failed:\n", dmd.output);
auto ls = executeShell("ls -l");
if (ls.status == 0) writeln("Failed to retrieve file listing");
if (ls.status != 0) writeln("Failed to retrieve file listing");
else writeln(ls.output);
---
Expand Down

0 comments on commit db35781

Please sign in to comment.