From e16bf3f6951812d15e15e5f545e9cc04d57af59e Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sun, 16 Oct 2011 21:29:39 -0400 Subject: [PATCH] fix stray closing */ --- main/Structure.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/Structure.scala b/main/Structure.scala index deea9e25c..dde869d86 100644 --- a/main/Structure.scala +++ b/main/Structure.scala @@ -105,7 +105,7 @@ sealed trait TaskKey[T] extends ScopedTaskable[T] with KeyedInitialize[Task[T]] /** Identifies an input task. An input task parses input and produces a task to run. * It consists of three parts: the scope, the name, and the type of the value produced by an input task associated with this key. * The scope is represented by a value of type Scope. -* The name and the type are represented by a value of type AttributeKey[InputTask[T]]. */ +* The name and the type are represented by a value of type AttributeKey[InputTask[T]]. * Instances are constructed using the companion object. */ sealed trait InputKey[T] extends Scoped with KeyedInitialize[InputTask[T]] with Scoped.ScopingSetting[InputKey[T]] with Scoped.DefinableSetting[InputTask[T]] {