From f04a18efdf4ca88fe1ac77acab30e21290957919 Mon Sep 17 00:00:00 2001 From: Edward Wang Date: Thu, 21 Sep 2017 16:36:31 -0700 Subject: Some ScalaDoc warning fixes --- src/main/scala/firrtl/transforms/CheckCombLoops.scala | 2 +- src/main/scala/firrtl/transforms/DeadCodeElimination.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/scala/firrtl/transforms') diff --git a/src/main/scala/firrtl/transforms/CheckCombLoops.scala b/src/main/scala/firrtl/transforms/CheckCombLoops.scala index d2d8b449..d50a027c 100644 --- a/src/main/scala/firrtl/transforms/CheckCombLoops.scala +++ b/src/main/scala/firrtl/transforms/CheckCombLoops.scala @@ -35,7 +35,7 @@ object DontCheckCombLoopsAnnotation { /** Finds and detects combinational logic loops in a circuit, if any * exist. Returns the input circuit with no modifications. * - * @throws a CombLoopException if a loop is found + * @throws CombLoopException if a loop is found * @note Input form: Low FIRRTL * @note Output form: Low FIRRTL (identity transform) * @note The pass looks for loops through combinational-read memories diff --git a/src/main/scala/firrtl/transforms/DeadCodeElimination.scala b/src/main/scala/firrtl/transforms/DeadCodeElimination.scala index 48978a7a..24c1c51c 100644 --- a/src/main/scala/firrtl/transforms/DeadCodeElimination.scala +++ b/src/main/scala/firrtl/transforms/DeadCodeElimination.scala @@ -26,7 +26,7 @@ import java.io.{File, FileWriter} * eligible for removal. Components marked with a [[DontTouchAnnotation]] will be treated as a * circuit sink and thus anything that drives such a marked component will NOT be removed. * - * This transform preserves deduplication. All instances of a given [[DefModule]] are treated as + * This transform preserves deduplication. All instances of a given [[firrtl.ir.DefModule]] are treated as * the same individual module. Thus, while certain instances may have dead code due to the * circumstances of their instantiation in their parent module, they will still not be removed. To * remove such modules, use the [[NoDedupAnnotation]] to prevent deduplication. -- cgit v1.2.3