From 0e87d8efb8c3a3726796af4a4b8b57e7eeb81be7 Mon Sep 17 00:00:00 2001 From: Adam Izraelevitz Date: Thu, 24 Sep 2020 10:00:23 -0700 Subject: Fix broken mdoc (#1600) * Fix broken mdoc * Added test-chisel-docs to ci workflow--- docs/src/cookbooks/naming.md | 2 +- docs/src/explanations/naming.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/src') diff --git a/docs/src/cookbooks/naming.md b/docs/src/cookbooks/naming.md index 5f57826f..604843aa 100644 --- a/docs/src/cookbooks/naming.md +++ b/docs/src/cookbooks/naming.md @@ -58,5 +58,5 @@ class ExampleNoPrefix extends MultiIOModule { out := add } -println(ChiselStage.emitVerilog(new Example7)) +println(ChiselStage.emitVerilog(new ExampleNoPrefix)) ``` diff --git a/docs/src/explanations/naming.md b/docs/src/explanations/naming.md index 69870813..56c089bc 100644 --- a/docs/src/explanations/naming.md +++ b/docs/src/explanations/naming.md @@ -213,7 +213,7 @@ reflection naming cannot: ```scala mdoc class Example10 extends MultiIOModule { { - val in = IO(Input(UInt(width.W))) + val in = IO(Input(UInt(3.W))) val out = IO(Output(UInt())) val add = in + in -- cgit v1.2.3