diff options
Diffstat (limited to 'coreutils/test.c')
-rw-r--r-- | coreutils/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index f18e3ae..6524c4f 100644 --- a/coreutils/test.c +++ b/coreutils/test.c @@ -49,9 +49,9 @@ * state. */ /* test(1) accepts the following grammar: - oexpr ::= aexpr | aexpr "-o" oexpr ; - aexpr ::= nexpr | nexpr "-a" aexpr ; - nexpr ::= primary | "!" primary + oexpr ::= aexpr | aexpr "-o" oexpr ; + aexpr ::= nexpr | nexpr "-a" aexpr ; + nexpr ::= primary | "!" primary primary ::= unary-operator operand | operand binary-operator operand | operand |