From f461b94e73dd15cefe7ec92da1206ba0dd94fcc5 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Thu, 24 Oct 2013 16:34:16 -0400 Subject: [PATCH] Fix API comment for State.{+,++} --- main/command/src/main/scala/sbt/State.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/command/src/main/scala/sbt/State.scala b/main/command/src/main/scala/sbt/State.scala index 6ba70efdd..a449fc1f9 100644 --- a/main/command/src/main/scala/sbt/State.scala +++ b/main/command/src/main/scala/sbt/State.scala @@ -85,9 +85,9 @@ trait StateOps { * It is only once control is returned to the command processor that failure handling at the command level occurs. */ def handleError(t: Throwable): State - /** Schedules `newCommands` to be run after any remaining commands. */ + /** Registers `newCommands` as available commands. */ def ++ (newCommands: Seq[Command]): State - /** Schedules `newCommand` to be run after any remaining commands. */ + /** Registers `newCommand` as an available command. */ def + (newCommand: Command): State /** Gets the value associated with `key` from the custom attributes map.*/