Document that == and != are case-insensitive

This commit is contained in:
Félix Saparelli 2021-10-17 04:03:18 +13:00
parent 96de715cf7
commit 9d14ad7166
No known key found for this signature in database
GPG Key ID: B948C4BAE44FC474
1 changed files with 2 additions and 2 deletions

View File

@ -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