fix spelling, too much / too many

This commit is contained in:
rlar 2017-03-13 18:52:22 +01:00
parent f39669fc96
commit 57c79650bd
3 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ INP2M(CKTcircuit *ckt, INPtables *tab, card *current)
}
if (numnodes > model_numnodes(thismodel->INPmodType)) {
LITERR ("too much nodes connected to instance");
LITERR ("too many nodes connected to instance");
return;
}

View File

@ -63,7 +63,7 @@ void INP2N(CKTcircuit *ckt, INPtables * tab, card * current)
line=saveline;
term=(term-2)/2;
if (term > 7) {
LITERR("Numerical device has too much nodes, the limitation is 7\n");
LITERR("Numerical device has too many nodes, the limitation is 7\n");
return;
}
for(i=0;i<term;i++) {

View File

@ -84,7 +84,7 @@ void INP2Q(CKTcircuit *ckt, INPtables * tab, card * current, CKTnode *gnode)
int model_numnodes_ = model_numnodes(thismodel->INPmodType);
if (i > model_numnodes_) {
LITERR("Too much nodes for this model type");
LITERR("Too many nodes for this model type");
return;
}