docs: g_regex_match_all: Remove a stray ";" in an example regex

This commit is contained in:
Luke T. Shumaker 2024-08-12 18:04:16 -06:00
parent e4a2aa8f39
commit 9f6afbdb33

View File

@ -2357,7 +2357,7 @@ g_regex_match_all (const GRegex *regex,
* This function uses a different algorithm (called DFA, i.e. deterministic * This function uses a different algorithm (called DFA, i.e. deterministic
* finite automaton), so it can retrieve all the possible matches, all * finite automaton), so it can retrieve all the possible matches, all
* starting at the same point in the string. For instance matching * starting at the same point in the string. For instance matching
* `"<a> <b> <c>"` against the pattern `"<.*>;"` * `"<a> <b> <c>"` against the pattern `"<.*>"`
* you would obtain three matches: `"<a> <b> <c>"`, * you would obtain three matches: `"<a> <b> <c>"`,
* `"<a> <b>"` and `"<a>"`. * `"<a> <b>"` and `"<a>"`.
* *