diff options
| author | Edward Wang | 2017-09-21 16:36:31 -0700 |
|---|---|---|
| committer | edwardcwang | 2017-09-21 17:13:30 -0700 |
| commit | f04a18efdf4ca88fe1ac77acab30e21290957919 (patch) | |
| tree | dc37252197ea418b8e1427c99000e7a8b6ef5fb1 /src/main/scala/tutorial | |
| parent | 8dbc6e63b6235af69094eb75050e8a751e22694a (diff) | |
Some ScalaDoc warning fixes
Diffstat (limited to 'src/main/scala/tutorial')
| -rw-r--r-- | src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala | 4 | ||||
| -rw-r--r-- | src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala b/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala index ccd6d9c0..6df6733d 100644 --- a/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala +++ b/src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala @@ -12,7 +12,7 @@ import firrtl.Mappers._ // Scala's mutable collections import scala.collection.mutable -/** Ledger tracks [[Circuit]] statistics +/** Ledger tracks [[firrtl.ir.Circuit]] statistics * * In this lesson, we want to count the number of muxes in each * module in our design. @@ -47,7 +47,7 @@ class Ledger { /** AnalyzeCircuit Transform * - * Walks [[ir.Circuit]], and records the number of muxes it finds, per module. + * Walks [[firrtl.ir.Circuit]], and records the number of muxes it finds, per module. * * While some compiler frameworks operate on graphs, we represent a Firrtl * circuit using a tree representation: diff --git a/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala b/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala index 6236703f..87b87004 100644 --- a/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala +++ b/src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala @@ -14,7 +14,7 @@ import firrtl.Mappers._ // Scala's mutable collections import scala.collection.mutable -/** Ledger tracks [[Circuit]] statistics +/** Ledger tracks [[firrtl.ir.Circuit]] statistics * * In this lesson, we want to calculate the number of muxes, not just in * a module, but also in any instances it has of other modules, etc. @@ -63,7 +63,7 @@ class Ledger { /** AnalyzeCircuit Transform * - * Walks [[ir.Circuit]], and records the number of muxes and instances it + * Walks [[firrtl.ir.Circuit]], and records the number of muxes and instances it * finds, per module. * * While the Firrtl parser emits a bare form of the IR (located in firrtl.ir._), |
