aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/tutorial
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/tutorial')
-rw-r--r--src/main/scala/tutorial/lesson1-circuit-traversal/AnalyzeCircuit.scala4
-rw-r--r--src/main/scala/tutorial/lesson2-working-ir/AnalyzeCircuit.scala4
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._),