From 83f654ef079664d33102e063e2e909400df223e3 Mon Sep 17 00:00:00 2001 From: Andrey Goder Date: Mon, 21 Oct 2013 15:48:26 -0700 Subject: [PATCH] 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 --- folly/Subprocess.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.34.1