summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-07-15 17:48:43 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-07-15 17:48:43 -0700
commitca6a1666a951ac98c633cb10b20a0a991dadf31b (patch)
treecd3042f44ad593c17bd22e99ed2a1e9fe55c6d9f
parent11dcf82910b388046e675d76d277b09b931d5363 (diff)
parentb5d14bf8bde06e36ce759cf68e819ddce2a8037b (diff)
downloadscala-ca6a1666a951ac98c633cb10b20a0a991dadf31b.tar.gz
scala-ca6a1666a951ac98c633cb10b20a0a991dadf31b.tar.bz2
scala-ca6a1666a951ac98c633cb10b20a0a991dadf31b.zip
Merge pull request #2729 from etaty/patch-1
Fix typo in Documentation
-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.