about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 67f7d42..4ba11d3 100644
--- a/README.md
+++ b/README.md
@@ -136,7 +136,7 @@ Default: `n`.
 	<numprop>  ::= depth | dev | entries | gid | inode
 	             | links | mode | rdev | size | total | uid
 	
-	<numop>    ::= <= | < | >= | > | == | !=
+	<numop>    ::= <= | < | >= | > | == | = | !=
 
         <dur>      ::= "./path"          -- mtime of relative path
                      | "/path"           -- mtime of absolute path
@@ -159,7 +159,7 @@ Default: `n`.
 	
 	<strprop>  ::= fstype | group | name | path | target | user
 	
-	<strop>    ::= ==                -- string equality
+	<strop>    ::= == | =            -- string equality
 	             | ===               -- case insensitive string equality
 	             | ~~                -- glob (fnmatch)
 	             | ~~~               -- case insensitive glob (fnmatch)
@@ -168,9 +168,9 @@ Default: `n`.
 	
 	<str>      ::= " ([^"] | "")+ "  -- use "" for a single " inside "
 
-	<typetest> ::= type == ( b | c | d | p | f | l )
+	<typetest> ::= type ( == | = ) ( b | c | d | p | f | l )
 
-	<modetest> ::= mode ( ==         -- exact permissions
+	<modetest> ::= mode ( == | =     -- exact permissions
 	                    | &          -- check if all bits of <octal> set
 	                    | |          -- check if any bit of <octal> set
 	                    ) <octal>