aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorYRabbit <rabbit@yrabbit.cyou>2022-05-10 21:19:02 +1000
committerYRabbit <rabbit@yrabbit.cyou>2022-05-10 21:19:02 +1000
commit1aa693732c079eab2f3e49d734aef65d73bfe3d0 (patch)
tree18380c6cdc7bc3225c4dac29c1daac8de933df5b /common
parent769a1f263a6514ee6ac215241e80c311cf81db4c (diff)
downloadnextpnr-1aa693732c079eab2f3e49d734aef65d73bfe3d0.tar.gz
nextpnr-1aa693732c079eab2f3e49d734aef65d73bfe3d0.tar.bz2
nextpnr-1aa693732c079eab2f3e49d734aef65d73bfe3d0.zip
common: Correct a minor typo in the message
Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
Diffstat (limited to 'common')
-rw-r--r--common/kernel/nextpnr_types.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/kernel/nextpnr_types.cc b/common/kernel/nextpnr_types.cc
index 57d816c0..82725d6f 100644
--- a/common/kernel/nextpnr_types.cc
+++ b/common/kernel/nextpnr_types.cc
@@ -68,7 +68,7 @@ void CellInfo::connectPort(IdString port_name, NetInfo *net)
user.port = port_name;
port.user_idx = net->users.add(user);
} else {
- NPNR_ASSERT_FALSE("invalid port type for connect_port");
+ NPNR_ASSERT_FALSE("invalid port type for connectPort");
}
}