summaryrefslogtreecommitdiff
path: root/src/library/scala/sys
diff options
context:
space:
mode:
authorValerian <etaty34@gmail.com>2013-07-14 00:02:14 +0200
committerValerian <etaty34@gmail.com>2013-07-14 00:02:14 +0200
commitb5d14bf8bde06e36ce759cf68e819ddce2a8037b (patch)
treecd3042f44ad593c17bd22e99ed2a1e9fe55c6d9f /src/library/scala/sys
parent11dcf82910b388046e675d76d277b09b931d5363 (diff)
downloadscala-b5d14bf8bde06e36ce759cf68e819ddce2a8037b.tar.gz
scala-b5d14bf8bde06e36ce759cf68e819ddce2a8037b.tar.bz2
scala-b5d14bf8bde06e36ce759cf68e819ddce2a8037b.zip
Fix typo in Documentation
Diffstat (limited to 'src/library/scala/sys')
-rw-r--r--src/library/scala/sys/process/ProcessBuilder.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/sys/process/ProcessBuilder.scala b/src/library/scala/sys/process/ProcessBuilder.scala
index c8e548c76b..adf5a4f6b2 100644
--- a/src/library/scala/sys/process/ProcessBuilder.scala
+++ b/src/library/scala/sys/process/ProcessBuilder.scala
@@ -127,7 +127,7 @@ import ProcessBuilder._
*
* Finally, `!` at the end executes the commands, and returns the exit value.
* Whatever is printed will be sent to the Scala process standard output. If
- * we wanted to caputre it, we could run that with `!!` instead.
+ * we wanted to capture it, we could run that with `!!` instead.
*
* Note: though it is not shown above, the equivalent of a shell's `;` would be
* `###`. The reason for this name is that `;` is a reserved token in Scala.