* src/ltlparse/ltlparse.yy: Typo.

This commit is contained in:
Alexandre Duret-Lutz 2004-02-09 21:01:34 +00:00
parent faaa117e02
commit f2c6db6d49
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2004-02-09 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-02-09 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/ltlparse/ltlparse.yy: Typo.
* wrap/python/cgi/ltl2tgba.in: Use render_dot when * wrap/python/cgi/ltl2tgba.in: Use render_dot when
showing formula. showing formula.
* wrap/python/cgi/README: Mention unique_id. * wrap/python/cgi/README: Mention unique_id.

View file

@ -74,7 +74,7 @@ using namespace spot::ltl;
/* All tokens. */ /* All tokens. */
%token <token> PAR_OPEN "opening parenthesis" PAR_CLOSE "closing parenthesis" %token <token> PAR_OPEN "opening parenthesis" PAR_CLOSE "closing parenthesis"
%token <token> OP_OR "or operator" OP_XOR "xor operator" OP_AND "and operation" %token <token> OP_OR "or operator" OP_XOR "xor operator" OP_AND "and operator"
%token <token> OP_IMPLIES "implication operator" OP_EQUIV "equivalent operator" %token <token> OP_IMPLIES "implication operator" OP_EQUIV "equivalent operator"
%token <token> OP_U "until operator" OP_R "release operator" %token <token> OP_U "until operator" OP_R "release operator"
%token <token> OP_F "sometimes operator" OP_G "always operator" %token <token> OP_F "sometimes operator" OP_G "always operator"