Skip to content

Commit c5d1e8a

Browse files
committed
minor #10207 [Process] Fix typo in Process object initialization (gregurco)
This PR was merged into the 3.4 branch. Discussion ---------- [Process] Fix typo in Process object initialization Hello! This small typo does not exist in 2.8, so I did PR into 3.4. Commits ------- d96989f [Process] Fix typo in Process object initialization
2 parents 01ec58c + d96989f commit c5d1e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/process.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Before a process is started, you can specify its standard input using either the
231231
of the constructor. The provided input can be a string, a stream resource or a
232232
Traversable object::
233233

234-
$process = new Process('cat']);
234+
$process = new Process('cat');
235235
$process->setInput('foobar');
236236
$process->run();
237237

0 commit comments

Comments
 (0)