Small formatting fixes.

* glib/tmpl/string_utils.sgml:
	* glib/tmpl/threads.sgml: Small formatting fixes.
This commit is contained in:
Matthias Clasen 2002-05-30 21:55:14 +00:00
parent 5e45a337b8
commit bca67c15fe
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-05-30 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/string_utils.sgml:
* glib/tmpl/threads.sgml: Small formatting fixes.
2002-05-26 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/conversions.sgml: Add GIConv.

View File

@ -643,7 +643,7 @@ The typical usage would be something like:
<informalexample><programlisting>
char buf[G_ASCII_DTOSTR_BUF_SIZE];
fprintf (out, "value=%s\n", g_ascii_dtostr (buf, sizeof (buf), value));
fprintf (out, "value=&percent;s\n", g_ascii_dtostr (buf, sizeof (buf), value));
</programlisting></informalexample>
</para>

View File

@ -488,7 +488,7 @@ access. A first naive implementation would be:
static GMutex * mutex = NULL;
if (!mutex)
mutex = g_mutex_new ();
mutex = g_mutex_new (<!-- -->);
g_mutex_lock (mutex);
ret_val = current_number = calc_next_number (current_number);
g_mutex_unlock (mutex);