From: Andrey Goder Date: Mon, 21 Oct 2013 22:48:26 +0000 (-0700) Subject: fix typo in comment X-Git-Tag: v0.22.0~811 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=83f654ef079664d33102e063e2e909400df223e3;p=folly.git fix typo in comment 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 --- diff --git a/folly/Subprocess.h b/folly/Subprocess.h index 94cc4089..74e9fe9b 100644 --- a/folly/Subprocess.h +++ b/folly/Subprocess.h @@ -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();