From cbd7d698a9ba4ae9517b3ef3d33c20fb0bbb1be5 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Tue, 20 Apr 2021 21:08:34 -0400 Subject: [PATCH] Fix diff pair error message suffix suggestions We accept diff pairs that end in N/P, no underscore required --- pcbnew/router/pns_diff_pair_placer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/router/pns_diff_pair_placer.cpp b/pcbnew/router/pns_diff_pair_placer.cpp index aa1cf7cd50..22a923018a 100644 --- a/pcbnew/router/pns_diff_pair_placer.cpp +++ b/pcbnew/router/pns_diff_pair_placer.cpp @@ -477,7 +477,7 @@ bool DIFF_PAIR_PLACER::FindDpPrimitivePair( NODE* aWorld, const VECTOR2I& aP, IT { *aErrorMsg = _( "Unable to find complementary differential pair " "nets. Make sure the names of the nets belonging " - "to a differential pair end with either _N/_P or +/-." ); + "to a differential pair end with either N/P or +/-." ); } return false; }