Skip to content

Commit 435a1d8

Browse files
author
Edward Nutting
committed
Fix error message text.
1 parent 7200217 commit 435a1d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/modsim/modules/SplitMerge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public void propagate() {
207207
if (portA0.wasUpdated() || portA1.wasUpdated()) {
208208
if(portA0.isConnected() && portA1.isConnected())
209209
{
210-
JOptionPane.showMessageDialog(Main.ui.pane, "Error: There must only be one connection to that size of split/merge.");
210+
JOptionPane.showMessageDialog(Main.ui.pane, "Error: There must only be one connection to that side of a split/merge.");
211211
Port port = portA0.wasUpdated()?portA0:portA1;
212212
synchronized (Main.sim)
213213
{

0 commit comments

Comments
 (0)