From: Behdad Esfahbod Date: Mon, 20 Aug 2007 23:34:35 +0000 (+0000) Subject: Fix typos X-Git-Tag: GLIB_2_14_1~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf04380d3c7b35cf98d6d54516281a08bdc9e6cc;p=platform%2Fupstream%2Fglib.git Fix typos svn path=/trunk/; revision=5712 --- diff --git a/ChangeLog b/ChangeLog index 13e200e..e6ecd8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-08-20 Behdad Esfahbod + + * glib/gmappedfile.c: + * glib/gregex.c: + * glib/gstdio.c: + Fix typos (#468694). + 2007-08-14 Cody Russell * gobject/gsignal.c: g_type_default_interface_ref() was not diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 7a9ce97..5bc6dad 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2007-08-20 Behdad Esfahbod + + * glib/tmpl/spawn.sgml: + Fix typos (#468694). + 2007-08-15 Mikael Hallendal * glib/tmpl/keyfile.sgml: Clearify that only comments can precede diff --git a/docs/reference/glib/tmpl/spawn.sgml b/docs/reference/glib/tmpl/spawn.sgml index ccdc5f8..f4d6ef0 100644 --- a/docs/reference/glib/tmpl/spawn.sgml +++ b/docs/reference/glib/tmpl/spawn.sgml @@ -65,7 +65,7 @@ Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes(). or handle SIGCHLD yourself), or the child will become a zombie. @G_SPAWN_SEARCH_PATH: argv[0] need not be an absolute path, it will be looked for in the user's PATH. -@G_SPAWN_STDOUT_TO_DEV_NULL: the child's standad output will be discarded, +@G_SPAWN_STDOUT_TO_DEV_NULL: the child's standard output will be discarded, instead of going to the same location as the parent's standard output. @G_SPAWN_STDERR_TO_DEV_NULL: the child's standard error will be discarded. @G_SPAWN_CHILD_INHERITS_STDIN: the child will inherit the parent's standard diff --git a/glib/gmappedfile.c b/glib/gmappedfile.c index d3d4de8..1220f41 100644 --- a/glib/gmappedfile.c +++ b/glib/gmappedfile.c @@ -72,7 +72,7 @@ struct _GMappedFile /** * g_mapped_file_new: * @filename: The path of the file to load, in the GLib filename encoding - * @writable: wether the mapping should be writable + * @writable: whether the mapping should be writable * @error: return location for a #GError, or %NULL * * Maps a file into memory. On UNIX, this is using the mmap() function. diff --git a/glib/gregex.c b/glib/gregex.c index 0679daa..8d3659c 100644 --- a/glib/gregex.c +++ b/glib/gregex.c @@ -349,7 +349,7 @@ g_match_info_next (GMatchInfo *match_info, * g_match_info_matches: * @match_info: a #GMatchInfo structure * - * Returns wether the previous match operation succeeded. + * Returns whether the previous match operation succeeded. * * Returns: %TRUE if the previous match operation succeeded, * %FALSE otherwise diff --git a/glib/gstdio.c b/glib/gstdio.c index f76e6aa..4b7a611 100644 --- a/glib/gstdio.c +++ b/glib/gstdio.c @@ -197,7 +197,7 @@ g_open (const gchar *filename, * * A wrapper for the POSIX creat() function. The creat() function is * used to convert a pathname into a file descriptor, creating a file - * if necessar. Note that on POSIX systems file descriptors are + * if necessary. Note that on POSIX systems file descriptors are * implemented by the operating system. On Windows, it's the C library * that implements creat() and file descriptors. The actual Windows * API for opening files is something different.