From c81894e45b38e330f7ff867eaf764e4eb841e4a2 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 20 Jan 2017 08:10:32 +0000 Subject: [PATCH] spelling: command --- main-command/src/main/scala/sbt/internal/CommandExchange.scala | 2 +- run/src/main/scala/sbt/Fork.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main-command/src/main/scala/sbt/internal/CommandExchange.scala b/main-command/src/main/scala/sbt/internal/CommandExchange.scala index 737903071..8db6c6fcc 100644 --- a/main-command/src/main/scala/sbt/internal/CommandExchange.scala +++ b/main-command/src/main/scala/sbt/internal/CommandExchange.scala @@ -16,7 +16,7 @@ import sjsonnew.JsonFormat /** * The command exchange merges multiple command channels (e.g. network and console), * 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. */ private[sbt] final class CommandExchange { diff --git a/run/src/main/scala/sbt/Fork.scala b/run/src/main/scala/sbt/Fork.scala index 917872424..40075bd15 100644 --- a/run/src/main/scala/sbt/Fork.scala +++ b/run/src/main/scala/sbt/Fork.scala @@ -49,7 +49,7 @@ case class CustomOutput(output: OutputStream) extends OutputStrategy 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 runnerClass If Some, this will be prepended to the `arguments` passed to the `apply` or `fork` methods.