API doc fixes

This commit is contained in:
Mark Harrah 2012-02-04 21:10:30 -05:00
parent dd4efec03c
commit 410ba2afa9
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ object State
/** Provides a list of recently executed commands. The commands are stored as processed instead of as entered by the user.
* @param executed the list of the most recently executed commands, with the most recent command first.
* @maxSize the maximum number of commands to keep, or 0 to keep an unlimited number. */
* @param maxSize the maximum number of commands to keep, or 0 to keep an unlimited number. */
final class History private[State](val executed: Seq[String], val maxSize: Int)
{
/** Adds `command` as the most recently executed command.*/

View File

@ -76,7 +76,7 @@ object ConcurrentRestrictions
type TagMap = Map[Tag, Int]
/** Implements concurrency restrictions on tasks based on Tags.
* @tparma A type of a task
* @tparam A type of a task
* @param get extracts tags from a task
* @param validF defines whether a set of tasks are allowed to execute concurrently based on their merged tags*/
def tagged[A](get: A => TagMap, validF: TagMap => Boolean): ConcurrentRestrictions[A] =