Fix API comment for State.{+,++}

This commit is contained in:
Mark Harrah 2013-10-24 16:34:16 -04:00
parent ecd3b8843d
commit f461b94e73
1 changed files with 2 additions and 2 deletions

View File

@ -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.*/