fix typo in comment
authorAndrey Goder <agoder@fb.com>
Mon, 21 Oct 2013 22:48:26 +0000 (15:48 -0700)
committerSara Golemon <sgolemon@fb.com>
Thu, 24 Oct 2013 21:53:41 +0000 (14:53 -0700)
Summary: Pretty sure it was meant to be this way...

@override-unit-failures

Test Plan: n/a

Reviewed By: tudorb@fb.com

FB internal diff: D1020789

folly/Subprocess.h

index 94cc408971495f79b6fb3d765b17bfc53b1f9520..74e9fe9b1e13a20890a0b7f2d47886c7406b60f1 100644 (file)
@@ -37,7 +37,7 @@
  *    // read from proc.stdout()
  *    proc.wait();
  *
- * A thread-safe version of popen() (type="w", to write from the child):
+ * A thread-safe version of popen() (type="w", to write to the child):
  *    Subprocess proc(cmd, Subprocess::pipeStdin());
  *    // write to proc.stdin()
  *    proc.wait();