mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-13 07:41:11 +01:00
Document that == and != are case-insensitive
This commit is contained in:
parent
96de715cf7
commit
9d14ad7166
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ pub mod swaplock;
|
|||
/// ```
|
||||
///
|
||||
/// There is a set of [operators][Op]:
|
||||
/// - `==` and `!=`: exact match and exact not match
|
||||
/// - `==` and `!=`: exact match and exact not match (case insensitive)
|
||||
/// - `~=` and `~!`: regex match and regex not match
|
||||
/// - `*=` and `*!`: glob match and glob not match
|
||||
/// - `:=` and `:!`: set match and set not match
|
||||
|
@ -647,7 +647,7 @@ impl Matcher {
|
|||
|
||||
/// How a filter value is interpreted.
|
||||
///
|
||||
/// - `==` and `!=` match on the exact value as string equality,
|
||||
/// - `==` and `!=` match on the exact value as string equality (case-insensitively),
|
||||
/// - `~=` and `~!` match using a [regex],
|
||||
/// - `*=` and `*!` match using a glob, either via [globset] or [ignore]
|
||||
/// - `:=` and `:!` match via exact string comparisons, but on any of the list of values separated
|
||||
|
|
Loading…
Reference in a new issue