From 9f6afbdb33ac38bc70094fe96b676b44cc2334d7 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 12 Aug 2024 18:04:16 -0600 Subject: [PATCH] docs: g_regex_match_all: Remove a stray ";" in an example regex --- glib/gregex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gregex.c b/glib/gregex.c index dca294d7c..1e18384ac 100644 --- a/glib/gregex.c +++ b/glib/gregex.c @@ -2357,7 +2357,7 @@ g_regex_match_all (const GRegex *regex, * This function uses a different algorithm (called DFA, i.e. deterministic * finite automaton), so it can retrieve all the possible matches, all * starting at the same point in the string. For instance matching - * `" "` against the pattern `"<.*>;"` + * `" "` against the pattern `"<.*>"` * you would obtain three matches: `" "`, * `" "` and `""`. *