From d96989f54334259e40ff4b2374c6725ea6cece08 Mon Sep 17 00:00:00 2001 From: Vlad Gregurco Date: Wed, 22 Aug 2018 17:33:54 +0300 Subject: [PATCH] [Process] Fix typo in Process object initialization --- components/process.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/process.rst b/components/process.rst index bd4a33e7f56..3de0dca66a7 100644 --- a/components/process.rst +++ b/components/process.rst @@ -231,7 +231,7 @@ Before a process is started, you can specify its standard input using either the of the constructor. The provided input can be a string, a stream resource or a Traversable object:: - $process = new Process('cat']); + $process = new Process('cat'); $process->setInput('foobar'); $process->run();