Fixed some minor typos in the documentation.

2008-01-18  Murray Cumming  <murrayc@murrayc.com>

* glib/gfileutils.c:
* glib/gsequence.c:
* glib/gstring.c: Fixed some minor typos in the documentation.

svn path=/trunk/; revision=6332
This commit is contained in:
Murray Cumming 2008-01-18 09:41:46 +00:00 committed by Murray Cumming
parent 0108d39d02
commit d4b9875df1
4 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2008-01-18 Murray Cumming <murrayc@murrayc.com>
* glib/gfileutils.c:
* glib/gsequence.c:
* glib/gstring.c: Fixed some minor typos in the documentation.
2008-01-16 Dan Winship <danw@gnome.org> 2008-01-16 Dan Winship <danw@gnome.org>
* glib/gchecksum.c (md5_sum_update): Fix another bug (which * glib/gchecksum.c (md5_sum_update): Fix another bug (which

View File

@ -152,7 +152,7 @@ g_mkdir_with_parents (const gchar *pathname,
* to perform an operation, because there is always the possibility * to perform an operation, because there is always the possibility
* of the condition changing before you actually perform the operation. * of the condition changing before you actually perform the operation.
* For example, you might think you could use %G_FILE_TEST_IS_SYMLINK * For example, you might think you could use %G_FILE_TEST_IS_SYMLINK
* to know whether it is is safe to write to a file without being * to know whether it is safe to write to a file without being
* tricked into writing into a different location. It doesn't work! * tricked into writing into a different location. It doesn't work!
* |[ * |[
* /&ast; DON'T DO THIS &ast;/ * /&ast; DON'T DO THIS &ast;/

View File

@ -855,7 +855,7 @@ g_sequence_insert_sorted_iter (GSequence *seq,
* node is not actually in a sequence. * node is not actually in a sequence.
* *
* node_insert_sorted() makes sure the node is unlinked before * node_insert_sorted() makes sure the node is unlinked before
* is is inserted. * it is inserted.
* *
* The reason we need the "iter" versions at all is that that * The reason we need the "iter" versions at all is that that
* is the only kind of compare functions GtkTreeView can use. * is the only kind of compare functions GtkTreeView can use.

View File

@ -1355,7 +1355,7 @@ g_string_up (GString *string)
* @args: the list of arguments to insert in the output * @args: the list of arguments to insert in the output
* *
* Appends a formatted string onto the end of a #GString. * Appends a formatted string onto the end of a #GString.
* This function is is similar to g_string_append_printf() * This function is similar to g_string_append_printf()
* except that the arguments to the format string are passed * except that the arguments to the format string are passed
* as a va_list. * as a va_list.
* *
@ -1452,7 +1452,7 @@ g_string_printf (GString *string,
* @Varargs: the parameters to insert into the format string * @Varargs: the parameters to insert into the format string
* *
* Appends a formatted string onto the end of a #GString. * Appends a formatted string onto the end of a #GString.
* This function is is similar to g_string_sprintf() except that * This function is similar to g_string_sprintf() except that
* the text is appended to the #GString. * the text is appended to the #GString.
* *
* Deprecated: This function has been renamed to g_string_append_printf() * Deprecated: This function has been renamed to g_string_append_printf()
@ -1465,7 +1465,7 @@ g_string_printf (GString *string,
* @Varargs: the parameters to insert into the format string * @Varargs: the parameters to insert into the format string
* *
* Appends a formatted string onto the end of a #GString. * Appends a formatted string onto the end of a #GString.
* This function is is similar to g_string_printf() except * This function is similar to g_string_printf() except
* that the text is appended to the #GString. * that the text is appended to the #GString.
*/ */
void void