Some doc fixes. (#111805)
authorMatthias Clasen <maclas@gmx.de>
Mon, 5 May 2003 18:26:38 +0000 (18:26 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 5 May 2003 18:26:38 +0000 (18:26 +0000)
2003-05-05  Matthias Clasen  <maclas@gmx.de>

* glib/gstrfuncs.c (g_ascii_dtostr):
(g_ascii_formatd):
(g_ascii_strtod): Some doc fixes.  (#111805)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gstrfuncs.c

index 8ea8b54..11fd4b4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
index 8ea8b54..11fd4b4 100644 (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>
 
        * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
index 8ea8b54..11fd4b4 100644 (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>
 
        * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
index 8ea8b54..11fd4b4 100644 (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>
 
        * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
index 8ea8b54..11fd4b4 100644 (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>
 
        * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
index 8ea8b54..11fd4b4 100644 (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>
 
        * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
index 5eee1d9..e6fd0fe 100644 (file)
@@ -327,7 +327,7 @@ g_strtod (const gchar *nptr,
  * To handle input from the user you should normally use the
  * 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().
  *
  * If the correct value would cause overflow, plus or minus %HUGE_VAL
@@ -477,7 +477,7 @@ g_ascii_strtod (const gchar *nptr,
  * decimal point. 
  * 
  * 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
  * guaranteed that the size of the resulting string will never
  * be larger than @G_ASCII_DTOSTR_BUF_SIZE bytes.
@@ -496,13 +496,13 @@ g_ascii_dtostr (gchar       *buffer,
  * g_ascii_formatd:
  * @buffer: A buffer to place the resulting string in
  * @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. 
  * @d: The #gdouble to convert
  *
  * Converts a #gdouble to a string, using the '.' as
  * 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'. 
  * 
  * If you just want to want to serialize the value into a