Some doc fixes. (#111805)

2003-05-05  Matthias Clasen  <maclas@gmx.de>

	* glib/gstrfuncs.c (g_ascii_dtostr):
	(g_ascii_formatd):
	(g_ascii_strtod): Some doc fixes.  (#111805)
This commit is contained in:
Matthias Clasen 2003-05-05 18:26:38 +00:00 committed by Matthias Clasen
parent 7feee9b513
commit 8e80b63b1a
7 changed files with 40 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2003-05-05 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes. (#111805)
2003-05-05 Christian Rose <menthos@menthos.com> 2003-05-05 Christian Rose <menthos@menthos.com>
* configure.in: Added sr and sr@Latn to ALL_LINGUAS. * configure.in: Added sr and sr@Latn to ALL_LINGUAS.

View File

@ -1,3 +1,9 @@
2003-05-05 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes. (#111805)
2003-05-05 Christian Rose <menthos@menthos.com> 2003-05-05 Christian Rose <menthos@menthos.com>
* configure.in: Added sr and sr@Latn to ALL_LINGUAS. * configure.in: Added sr and sr@Latn to ALL_LINGUAS.

View File

@ -1,3 +1,9 @@
2003-05-05 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes. (#111805)
2003-05-05 Christian Rose <menthos@menthos.com> 2003-05-05 Christian Rose <menthos@menthos.com>
* configure.in: Added sr and sr@Latn to ALL_LINGUAS. * configure.in: Added sr and sr@Latn to ALL_LINGUAS.

View File

@ -1,3 +1,9 @@
2003-05-05 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes. (#111805)
2003-05-05 Christian Rose <menthos@menthos.com> 2003-05-05 Christian Rose <menthos@menthos.com>
* configure.in: Added sr and sr@Latn to ALL_LINGUAS. * configure.in: Added sr and sr@Latn to ALL_LINGUAS.

View File

@ -1,3 +1,9 @@
2003-05-05 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes. (#111805)
2003-05-05 Christian Rose <menthos@menthos.com> 2003-05-05 Christian Rose <menthos@menthos.com>
* configure.in: Added sr and sr@Latn to ALL_LINGUAS. * configure.in: Added sr and sr@Latn to ALL_LINGUAS.

View File

@ -1,3 +1,9 @@
2003-05-05 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes. (#111805)
2003-05-05 Christian Rose <menthos@menthos.com> 2003-05-05 Christian Rose <menthos@menthos.com>
* configure.in: Added sr and sr@Latn to ALL_LINGUAS. * configure.in: Added sr and sr@Latn to ALL_LINGUAS.

View File

@ -327,7 +327,7 @@ g_strtod (const gchar *nptr,
* To handle input from the user you should normally use the * To handle input from the user you should normally use the
* locale-sensitive system strtod() function. * locale-sensitive system strtod() function.
* *
* To convert from a string to #gdouble in a locale-insensitive * To convert from a #gdouble to a string in a locale-insensitive
* way, use g_ascii_dtostr(). * way, use g_ascii_dtostr().
* *
* If the correct value would cause overflow, plus or minus %HUGE_VAL * If the correct value would cause overflow, plus or minus %HUGE_VAL
@ -477,7 +477,7 @@ g_ascii_strtod (const gchar *nptr,
* decimal point. * decimal point.
* *
* This functions generates enough precision that converting * This functions generates enough precision that converting
* the string back using g_strtod() gives the same machine-number * the string back using g_ascii_strtod() gives the same machine-number
* (on machines with IEEE compatible 64bit doubles). It is * (on machines with IEEE compatible 64bit doubles). It is
* guaranteed that the size of the resulting string will never * guaranteed that the size of the resulting string will never
* be larger than @G_ASCII_DTOSTR_BUF_SIZE bytes. * be larger than @G_ASCII_DTOSTR_BUF_SIZE bytes.
@ -496,13 +496,13 @@ g_ascii_dtostr (gchar *buffer,
* g_ascii_formatd: * g_ascii_formatd:
* @buffer: A buffer to place the resulting string in * @buffer: A buffer to place the resulting string in
* @buf_len: The length of the buffer. * @buf_len: The length of the buffer.
* @format: The printf-style format to use for the * @format: The printf()-style format to use for the
* code to use for converting. * code to use for converting.
* @d: The #gdouble to convert * @d: The #gdouble to convert
* *
* Converts a #gdouble to a string, using the '.' as * Converts a #gdouble to a string, using the '.' as
* decimal point. To format the number you pass in * decimal point. To format the number you pass in
* a printf-style formating string. Allowed conversion * a printf()-style format string. Allowed conversion
* specifiers are 'e', 'E', 'f', 'F', 'g' and 'G'. * specifiers are 'e', 'E', 'f', 'F', 'g' and 'G'.
* *
* If you just want to want to serialize the value into a * If you just want to want to serialize the value into a