diff options
Diffstat (limited to 'src/main/scala/tutorial/lesson2-working-ir')
| -rw-r--r-- | src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala | 4 |
1 files changed, 2 insertions, 2 deletions
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._), |
