aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl
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
parent8dbc6e63b6235af69094eb75050e8a751e22694a (diff)
Some ScalaDoc warning fixes
Diffstat (limited to 'src/main/scala/firrtl')
-rw-r--r--src/main/scala/firrtl/Compiler.scala4
-rw-r--r--src/main/scala/firrtl/transforms/CheckCombLoops.scala2
-rw-r--r--src/main/scala/firrtl/transforms/DeadCodeElimination.scala2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/main/scala/firrtl/Compiler.scala b/src/main/scala/firrtl/Compiler.scala
index 5ef291da..b49af505 100644
--- a/src/main/scala/firrtl/Compiler.scala
+++ b/src/main/scala/firrtl/Compiler.scala
@@ -169,9 +169,9 @@ final case object UnknownForm extends CircuitForm(-1) {
abstract class Transform extends LazyLogging {
/** A convenience function useful for debugging and error messages */
def name: String = this.getClass.getSimpleName
- /** The [[CircuitForm]] that this transform requires to operate on */
+ /** The [[firrtl.CircuitForm]] that this transform requires to operate on */
def inputForm: CircuitForm
- /** The [[CircuitForm]] that this transform outputs */
+ /** The [[firrtl.CircuitForm]] that this transform outputs */
def outputForm: CircuitForm
/** Perform the transform, encode renaming with RenameMap, and can
* delete annotations
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.