summaryrefslogtreecommitdiff
path: root/src/library/scala/sys/process/ProcessBuilder.scala
diff options
context:
space:
mode:
authorPaul Kernfeld <paulkernfeld@gmail.com>2016-09-16 15:59:53 -0400
committerPaul Kernfeld <paulkernfeld@gmail.com>2016-09-16 16:01:19 -0400
commit5c245f0e771fc0a25713e2b75661be603802d7a4 (patch)
tree3f88ebdf7bc50fe730b45894952aa8af0c11f77a /src/library/scala/sys/process/ProcessBuilder.scala
parent81a67eeacc7d2622ee364a21203b227142e2043e (diff)
downloadscala-5c245f0e771fc0a25713e2b75661be603802d7a4.tar.gz
scala-5c245f0e771fc0a25713e2b75661be603802d7a4.tar.bz2
scala-5c245f0e771fc0a25713e2b75661be603802d7a4.zip
In ProcessBuilder docs, replace .lines w/ .lineStream
ProcessBuilder.lines is deprecated
Diffstat (limited to 'src/library/scala/sys/process/ProcessBuilder.scala')
-rw-r--r--src/library/scala/sys/process/ProcessBuilder.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/library/scala/sys/process/ProcessBuilder.scala b/src/library/scala/sys/process/ProcessBuilder.scala
index ac86495001..e4344a857e 100644
--- a/src/library/scala/sys/process/ProcessBuilder.scala
+++ b/src/library/scala/sys/process/ProcessBuilder.scala
@@ -90,19 +90,19 @@ import ProcessBuilder._
*
* If not specified, the input of the external commands executed with `run` or
* `!` will not be tied to anything, and the output will be redirected to the
- * stdout and stderr of the Scala process. For the methods `!!` and `lines`, no
+ * stdout and stderr of the Scala process. For the methods `!!` and `lineStream`, no
* input will be provided, and the output will be directed according to the
* semantics of these methods.
*
* Some methods will cause stdin to be used as input. Output can be controlled
- * with a [[scala.sys.process.ProcessLogger]] -- `!!` and `lines` will only
+ * with a [[scala.sys.process.ProcessLogger]] -- `!!` and `lineStream` will only
* redirect error output when passed a `ProcessLogger`. If one desires full
* control over input and output, then a [[scala.sys.process.ProcessIO]] can be
* used with `run`.
*
- * For example, we could silence the error output from `lines_!` like this:
+ * For example, we could silence the error output from `lineStream_!` like this:
* {{{
- * val etcFiles = "find /etc" lines_! ProcessLogger(line => ())
+ * val etcFiles = "find /etc" lineStream_! ProcessLogger(line => ())
* }}}
*
* ==Extended Example==