pollita         Sun Mar 30 11:46:49 2003 EDT

  Modified files:              
    /phpdoc/en/reference/exec/functions proc-open.xml 
  Log:
  Minor typo
  
Index: phpdoc/en/reference/exec/functions/proc-open.xml
diff -u phpdoc/en/reference/exec/functions/proc-open.xml:1.2 
phpdoc/en/reference/exec/functions/proc-open.xml:1.3
--- phpdoc/en/reference/exec/functions/proc-open.xml:1.2        Wed Apr 17 02:37:48 
2002
+++ phpdoc/en/reference/exec/functions/proc-open.xml    Sun Mar 30 11:46:49 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <!-- splitted from ./en/functions/exec.xml, last change in rev 1.28 -->
   <refentry id='function.proc-open'>
    <refnamediv>
@@ -36,7 +36,7 @@
 $descriptorspec = array(
    0 => array("pipe", "r"),  // stdin is a pipe that the child will read from
    1 => array("pipe", "w"),  // stdout is a pipe that the child will write to
-   2 => array("file", "/tmp/error-output.txt", "a"), // stderr is a file to write to
+   2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
 );
 $process = proc_open("php", $descriptorspec, $pipes);
 if (is_resource($process)) {



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to