aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-12-27 15:32:09 +0100
committerGitHub <noreply@github.com>2022-12-27 15:32:09 +0100
commit0004cd54dbe9278ee5cdc72b044f0d7a7a5cbbf3 (patch)
tree45a7ee2c16175dca75da24e479910165cf435b6e
parent76fea8268ca7c3f9a9f4f610951f9ea84993e974 (diff)
parent2e5c799566bb3e588db3ef3411a63eb58cb5733a (diff)
downloadnextpnr-0004cd54dbe9278ee5cdc72b044f0d7a7a5cbbf3.tar.gz
nextpnr-0004cd54dbe9278ee5cdc72b044f0d7a7a5cbbf3.tar.bz2
nextpnr-0004cd54dbe9278ee5cdc72b044f0d7a7a5cbbf3.zip
Merge pull request #1069 from yrabbit/mistype
doc: fix a mistype
-rw-r--r--docs/netlist.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/netlist.md b/docs/netlist.md
index 43a96dde..6cff4a25 100644
--- a/docs/netlist.md
+++ b/docs/netlist.md
@@ -42,8 +42,7 @@ It also implements functions for getting timing data, mirroring that of the Arch
## NetInfo
-`NetInfo` instances have the following fields:\
-
+`NetInfo` instances have the following fields:
- `name` is the IdString name of the net - for nets with multiple names, one name is chosen according to a set of rules by the JSON frontend
- `hierpath` is name of the hierarchical cell containing the instance, for designs with hierarchy
- `driver` refers to the source of the net using `PortRef`; `driver.cell == nullptr` means that the net is undriven. Nets must have zero or one driver only. The corresponding cell port must be an output and its `PortInfo::net` must refer back to this net.