docs: simplify description of shell wildcard patterns

...to align with glob(7) language

Reported-by: @vyivel
This commit is contained in:
Johan Malm 2024-12-01 16:35:57 +00:00 committed by Consolatis
parent 5847508eb2
commit 8e3d5784a3
3 changed files with 7 additions and 5 deletions

View file

@ -5,7 +5,7 @@
#include <stdbool.h>
/**
* match_glob() - Pattern match using '*' wildcards and '?' jokers.
* match_glob() - Pattern match using shell wildcard rules (see glob(7))
* @pattern: Pattern to match against.
* @string: String to search.
* Note: Comparison case-insensitive.