Skip to content

Commit 60e7144

Browse files
authored
Fix two typos (freechipsproject#149)
1 parent e2602d3 commit 60e7144

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2.6_chiseltest.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
"built into the process.\n",
183183
"\n",
184184
"The `poke` and `expect` methods are now part of each individual `io` element.\n",
185-
"This gives important hints the the tester to make better checking of types.\n",
185+
"This gives important hints to the tester to make better checking of types.\n",
186186
"The `peek` and `step` operations are also now methods on `io` elements.\n",
187187
"\n",
188188
"Another difference is that values poked and expected are Chisel literals.\n",
@@ -466,7 +466,7 @@
466466
"\n",
467467
"Also introduced here is the new Chisel3 `Bundle` literal notation. Consider the line\n",
468468
"```scala\n",
469-
"new GcdInputBundle(16)).Lit(_.value1 -> x.U, _.value2 -> y.U)\n",
469+
"new GcdInputBundle(16).Lit(_.value1 -> x.U, _.value2 -> y.U)\n",
470470
"```\n",
471471
"`GcdInputBundle` defined above has two fields `value1` and `value2`.\n",
472472
"We create a bundle literal by first creating a bundle then calling its `.Lit` method.\n",

0 commit comments

Comments
 (0)