Minor doc markup fix.

This commit is contained in:
Matthias Clasen 2002-11-06 22:17:12 +00:00
parent 0950e76b7b
commit efd4945d5a
8 changed files with 37 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -1,3 +1,8 @@
2002-11-06 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_str_has_suffix):
(g_str_has_prefix): Minor doc markup fix.
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add -DG_DISABLE_CAST_CHECKS for

View File

@ -2426,7 +2426,7 @@ g_strrstr_len (const gchar *haystack,
*
* Looks whether the string @str ends with @suffix.
*
* Return value: TRUE if @str end with @suffix, FALSE otherwise.
* Return value: %TRUE if @str end with @suffix, %FALSE otherwise.
**/
gboolean
g_str_has_suffix (const gchar *str,
@ -2454,7 +2454,7 @@ g_str_has_suffix (const gchar *str,
*
* Looks whether the string @str begins with @prefix.
*
* Return value: TRUE if @str begins with @prefix, FALSE otherwise.
* Return value: %TRUE if @str begins with @prefix, %FALSE otherwise.
**/
gboolean
g_str_has_prefix (const gchar *str,