summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormergify[bot]2022-06-27 18:12:13 +0000
committerGitHub2022-06-27 18:12:13 +0000
commita931c5e218014c659bbff7d0dec74c882281d9a0 (patch)
tree6b5951ac74c019c39519cf778b47722cafa71f5a
parent3063a1b853726e0bc65d7211ea2e584275774412 (diff)
Fix broken link in interfaces-and-connections.md (#2607) (#2608)
Links between markdown pages should not have any file extension to ensure they work on the website. (cherry picked from commit 04d4dc6da11678d0f12f84913fc05359d9a998a1) Co-authored-by: Jack Koenig <koenig@sifive.com>
-rw-r--r--docs/src/explanations/interfaces-and-connections.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/explanations/interfaces-and-connections.md b/docs/src/explanations/interfaces-and-connections.md
index 0fb8bae8..5d9cfd3c 100644
--- a/docs/src/explanations/interfaces-and-connections.md
+++ b/docs/src/explanations/interfaces-and-connections.md
@@ -150,7 +150,7 @@ Below we can see the resulting error for this example:
```scala mdoc:crash
ChiselStage.emitVerilog(new BlockWithTemporaryWires)
```
-For more details and information, see [Deep Dive into Connection Operators](connection-operators.md)
+For more details and information, see [Deep Dive into Connection Operators](connection-operators)
NOTE: When using `Chisel._` (compatibility mode) instead of `chisel3._`, the `:=` operator works in a bidirectional fashion similar to `<>`, but not exactly the same.