Changes between Version 8 and Version 9 of KeepInterfaceSimplePlugin


Ignore:
Timestamp:
Nov 17, 2017, 8:41:47 AM (7 years ago)
Author:
Jon Ashley
Comment:

Fix grammar as per revision [16967]

Legend:

Unmodified
Added
Removed
Modified
  • KeepInterfaceSimplePlugin

    v8 v9  
    2323approval.visible = status != 'new' && status != 'closed'
    2424}}}
    25 Because lists of states are common, the Assistant also provides an `in` operator, with very high precedence. So another acceptable alternative would be:
     25Because lists of states are common, the Assistant also provides an `in` operator that tests membership of a list, with very high precedence. So another acceptable alternative would be:
    2626{{{#!ini
    2727[kis_assistant]
     
    166166                   product ::= negation
    167167                             | negation "*" | "/" product
    168                   negation ::= func_term
     168                  negation ::= membership
    169169                             | "-" | "!" negation
    170                  func_term ::= term
     170                membership ::= term
    171171                             | term "in" cmp_list
    172                              | <function_name> "(" param_list ")"
    173172                  cmp_list ::= "(" cmp_list ")"
    174173                             | expression
     
    180179                             | <number>
    181180                             | <field>
     181                             | <function_name> "(" param_list ")"
    182182                             | "'" <string> "'"
    183183}}}