summaryrefslogtreecommitdiff
path: root/src/library/scala/sys
diff options
context:
space:
mode:
authorEric Peters <eric@peters.org>2014-12-12 16:32:46 -0800
committerEric Peters <eric@peters.org>2014-12-12 16:32:46 -0800
commit33b9fe4e52053776c369e65c6b95919430c47759 (patch)
tree252e54a212f406da6023ca77a99fa0f6c104910b /src/library/scala/sys
parentd9f623db0ff1d20040939fbb9e15d4d4e5887c75 (diff)
downloadscala-33b9fe4e52053776c369e65c6b95919430c47759.tar.gz
scala-33b9fe4e52053776c369e65c6b95919430c47759.tar.bz2
scala-33b9fe4e52053776c369e65c6b95919430c47759.zip
Fix scaladoc OutpuStream typo
Diffstat (limited to 'src/library/scala/sys')
-rw-r--r--src/library/scala/sys/process/package.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/sys/process/package.scala b/src/library/scala/sys/process/package.scala
index 1340a6c415..b1976ad4b6 100644
--- a/src/library/scala/sys/process/package.scala
+++ b/src/library/scala/sys/process/package.scala
@@ -119,7 +119,7 @@ package scala.sys {
* ==Handling Input and Output==
*
* In the underlying Java model, once a `Process` has been started, one can
- * get `java.io.InputStream` and `java.io.OutpuStream` representing its
+ * get `java.io.InputStream` and `java.io.OutputStream` representing its
* output and input respectively. That is, what one writes to an
* `OutputStream` is turned into input to the process, and the output of a
* process can be read from an `InputStream` -- of which there are two, one