From fed43072b42ab75fd9ed5444a99027dd1bcba043 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Wed, 19 Jan 2022 21:31:14 -0800 Subject: [PATCH] Fix link to Naming Cookbook #naming implies within the current file. Removing the # refers to a file in the current directory. --- docs/src/cookbooks/cookbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/cookbooks/cookbook.md b/docs/src/cookbooks/cookbook.md index d4cf3030601..ec7e9ed224c 100644 --- a/docs/src/cookbooks/cookbook.md +++ b/docs/src/cookbooks/cookbook.md @@ -440,7 +440,7 @@ chisel3.stage.ChiselStage.emitVerilog(new CountBits(4)) ### How do I get Chisel to name signals properly in blocks like when/withClockAndReset? -Use the compiler plugin, and check out the [Naming Cookbook](#naming) if that still does not do what you want. +Use the compiler plugin, and check out the [Naming Cookbook](naming) if that still does not do what you want. ### How do I get Chisel to name the results of vector reads properly? Currently, name information is lost when using dynamic indexing. For example: