parseaut: fix typo in error message

* src/parseaut/parseaut.yy: Here.
* src/tests/parseaut.test: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-09-06 17:23:19 +02:00
parent 14c0577650
commit 5098c91bd4
2 changed files with 2 additions and 2 deletions

View file

@ -1054,7 +1054,7 @@ unlabeled-edge: checked-state-num trans-acc_opt
fill_guards(res); fill_guards(res);
if (res.cur_guard == res.guards.end()) if (res.cur_guard == res.guards.end())
{ {
error(@$, "too many transition for this state, " error(@$, "too many transitions for this state, "
"ignoring this one"); "ignoring this one");
cond = bddfalse; cond = bddfalse;
} }

View file

@ -423,7 +423,7 @@ input:7.17-31: 'property: implicit-labels' is incompatible with...
input:7.33-47: ... 'property: explicit-labels'. input:7.33-47: ... 'property: explicit-labels'.
input:8.17-25: 'property: trans-acc' is incompatible with... input:8.17-25: 'property: trans-acc' is incompatible with...
input:8.27-35: ... 'property: state-acc'. input:8.27-35: ... 'property: state-acc'.
input:16.7: too many transition for this state, ignoring this one input:16.7: too many transitions for this state, ignoring this one
input:28.33-44: 'property: state-labels' is incompatible with... input:28.33-44: 'property: state-labels' is incompatible with...
input:28.17-31: ... 'property: implicit-labels'. input:28.17-31: ... 'property: implicit-labels'.
input:50.20-24: state-based acceptance used despite... input:50.20-24: state-based acceptance used despite...