spelling: command

This commit is contained in:
Josh Soref 2017-01-20 08:10:32 +00:00
parent d3bea58555
commit c81894e45b
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import sjsonnew.JsonFormat
/** /**
* The command exchange merges multiple command channels (e.g. network and console), * The command exchange merges multiple command channels (e.g. network and console),
* and acts as the central multiplexing point. * and acts as the central multiplexing point.
* Instead of blocking on JLine.readLine, the server commmand will block on * Instead of blocking on JLine.readLine, the server command will block on
* this exchange, which could serve command request from either of the channel. * this exchange, which could serve command request from either of the channel.
*/ */
private[sbt] final class CommandExchange { private[sbt] final class CommandExchange {

View File

@ -49,7 +49,7 @@ case class CustomOutput(output: OutputStream) extends OutputStrategy
import java.lang.{ ProcessBuilder => JProcessBuilder } import java.lang.{ ProcessBuilder => JProcessBuilder }
/** /**
* Represents a commad that can be forked. * Represents a command that can be forked.
* *
* @param commandName The java-like binary to fork. This is expected to exist in bin/ of the Java home directory. * @param commandName The java-like binary to fork. This is expected to exist in bin/ of the Java home directory.
* @param runnerClass If Some, this will be prepended to the `arguments` passed to the `apply` or `fork` methods. * @param runnerClass If Some, this will be prepended to the `arguments` passed to the `apply` or `fork` methods.