diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-04-20 23:57:41 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-04-20 23:57:41 +0000 |
commit | 4138ac479b4521b28c3b8cb9ebd45347a1221de4 (patch) | |
tree | 00b25f2059d86c04a4fe022cfb4d1692f9788bdf /gtk/gtktextiter.c | |
parent | 1fe30c2cf647f1513f282206b7d0d20661f67885 (diff) | |
download | gtk+-4138ac479b4521b28c3b8cb9ebd45347a1221de4.tar.gz |
A bunch of trivial doc fixes.
Diffstat (limited to 'gtk/gtktextiter.c')
-rw-r--r-- | gtk/gtktextiter.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtktextiter.c b/gtk/gtktextiter.c index bb30ed0bbb..4d980b7c32 100644 --- a/gtk/gtktextiter.c +++ b/gtk/gtktextiter.c @@ -4322,8 +4322,9 @@ strbreakup (const char *string, * @match_end: return location for end of match, or %NULL * @limit: bound for the search, or %NULL for the end of the buffer * - * Searches forward for @str. Any match is returned as the range - * @match_start, @match_end. The search will not continue past + * Searches forward for @str. Any match is returned by setting + * @match_start to the first character of the match and @match_end to the + * first character after the match. The search will not continue past * @limit. Note that a search is a linear or O(n) operation, so you * may wish to use @limit to avoid locking up your UI on large * buffers. |