8073220: A typo in the documentation for class ProcessBuilder

Correct reference to be OutputStream

Reviewed-by: martin, alanb
This commit is contained in:
Roger Riggs 2015-03-23 09:53:08 -04:00
parent 7cb7ae5914
commit c92b8a33a6

View File

@ -82,7 +82,7 @@ import java.util.Map;
* <li><a name="redirect-output">a destination for <i>standard output</i>
* and <i>standard error</i></a>. By default, the subprocess writes standard
* output and standard error to pipes. Java code can access these pipes
* via the input streams returned by {@link Process#getInputStream()} and
* via the input streams returned by {@link Process#getOutputStream()} and
* {@link Process#getErrorStream()}. However, standard output and
* standard error may be redirected to other destinations using
* {@link #redirectOutput(Redirect) redirectOutput} and