From 6751133545b1ddd33ccafde1f6e9200e164679c3 Mon Sep 17 00:00:00 2001 From: Sebastian Goettschkes Date: Sat, 6 Apr 2013 05:59:08 +0200 Subject: [PATCH] Fixed minor spelling issues in the process component (found by @stof and @WouterJ) --- components/process.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/process.rst b/components/process.rst index 9d657cd2981..7f73f6f0967 100644 --- a/components/process.rst +++ b/components/process.rst @@ -27,7 +27,7 @@ a command in a sub-process:: $process->setTimeout(3600); $process->run(); - // executes after the the command finishes + // executes after the command finishes if (!$process->isSuccessful()) { throw new \RuntimeException($process->getErrorOutput()); } @@ -78,7 +78,7 @@ are done doing other stuff:: $process = new Process('ls -lsa'); $process->start(); - // do other things + // ... do other things $process->wait(function ($type, $buffer) { if ('err' === $type) {