From 1aa693732c079eab2f3e49d734aef65d73bfe3d0 Mon Sep 17 00:00:00 2001 From: YRabbit Date: Tue, 10 May 2022 21:19:02 +1000 Subject: [PATCH] common: Correct a minor typo in the message Signed-off-by: YRabbit --- common/kernel/nextpnr_types.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } }