summaryrefslogtreecommitdiff
path: root/chiselFrontend
diff options
context:
space:
mode:
authorFabien Marteau2017-02-15 10:03:18 +0100
committeredwardcwang2017-02-15 15:30:10 -0800
commitd00a3fe9a3df5ce888b5c461181aadbd4a293bf3 (patch)
tree1a9c55d78682089ae6a071591e51ccfffe618fe4 /chiselFrontend
parent73bb640bed2af97956515eaae18fcf54ae8485e3 (diff)
Blackbox comments spelling correction thanks to edwardcwang
Diffstat (limited to 'chiselFrontend')
-rw-r--r--chiselFrontend/src/main/scala/chisel3/core/BlackBox.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/BlackBox.scala b/chiselFrontend/src/main/scala/chisel3/core/BlackBox.scala
index ce509f3a..fa81a4a5 100644
--- a/chiselFrontend/src/main/scala/chisel3/core/BlackBox.scala
+++ b/chiselFrontend/src/main/scala/chisel3/core/BlackBox.scala
@@ -23,7 +23,7 @@ case class RawParam(value: String) extends Param
*
* @example
* Some design require a differential input clock to clock the all design.
- * With xilinx FPGA for example, a verilog template named IBUFDS must be
+ * With the xilinx FPGA for example, a Verilog template named IBUFDS must be
* integrated to use differential input:
* {{{
* IBUFDS #(.DIFF_TERM("TRUE"),
@@ -34,7 +34,7 @@ case class RawParam(value: String) extends Param
* );
* }}}
*
- * To instanciate it, a BlackBox can be used like following:
+ * To instantiate it, a BlackBox can be used like following:
* {{{
* import chisel3._
* import chisel3.experimental._