aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/transforms
diff options
context:
space:
mode:
authorEdward Wang2017-09-21 16:36:31 -0700
committeredwardcwang2017-09-21 17:13:30 -0700
commitf04a18efdf4ca88fe1ac77acab30e21290957919 (patch)
treedc37252197ea418b8e1427c99000e7a8b6ef5fb1 /src/main/scala/firrtl/transforms
parent8dbc6e63b6235af69094eb75050e8a751e22694a (diff)
Some ScalaDoc warning fixes
Diffstat (limited to 'src/main/scala/firrtl/transforms')
-rw-r--r--src/main/scala/firrtl/transforms/CheckCombLoops.scala2
-rw-r--r--src/main/scala/firrtl/transforms/DeadCodeElimination.scala2
2 files changed, 2 insertions, 2 deletions
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.