1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-15 20:25:12 +01:00

Fix typos

svn path=/trunk/; revision=5712
This commit is contained in:
Behdad Esfahbod 2007-08-20 23:34:35 +00:00
parent 7c3760dd31
commit bf04380d3c
6 changed files with 16 additions and 4 deletions

@ -1,3 +1,10 @@
2007-08-20 Behdad Esfahbod <behdad@gnome.org>
* glib/gmappedfile.c:
* glib/gregex.c:
* glib/gstdio.c:
Fix typos (#468694).
2007-08-14 Cody Russell <bratsche@gnome.org> 2007-08-14 Cody Russell <bratsche@gnome.org>
* gobject/gsignal.c: g_type_default_interface_ref() was not * gobject/gsignal.c: g_type_default_interface_ref() was not

@ -1,3 +1,8 @@
2007-08-20 Behdad Esfahbod <behdad@gnome.org>
* glib/tmpl/spawn.sgml:
Fix typos (#468694).
2007-08-15 Mikael Hallendal <micke@imendio.com> 2007-08-15 Mikael Hallendal <micke@imendio.com>
* glib/tmpl/keyfile.sgml: Clearify that only comments can precede * glib/tmpl/keyfile.sgml: Clearify that only comments can precede

@ -65,7 +65,7 @@ Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes().
or handle <literal>SIGCHLD</literal> yourself), or the child will become a zombie. or handle <literal>SIGCHLD</literal> yourself), or the child will become a zombie.
@G_SPAWN_SEARCH_PATH: <literal>argv[0]</literal> need not be an absolute path, @G_SPAWN_SEARCH_PATH: <literal>argv[0]</literal> need not be an absolute path,
it will be looked for in the user's <envar>PATH</envar>. it will be looked for in the user's <envar>PATH</envar>.
@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. 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_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 @G_SPAWN_CHILD_INHERITS_STDIN: the child will inherit the parent's standard

@ -72,7 +72,7 @@ struct _GMappedFile
/** /**
* g_mapped_file_new: * g_mapped_file_new:
* @filename: The path of the file to load, in the GLib filename encoding * @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 * @error: return location for a #GError, or %NULL
* *
* Maps a file into memory. On UNIX, this is using the mmap() function. * Maps a file into memory. On UNIX, this is using the mmap() function.

@ -349,7 +349,7 @@ g_match_info_next (GMatchInfo *match_info,
* g_match_info_matches: * g_match_info_matches:
* @match_info: a #GMatchInfo structure * @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, * Returns: %TRUE if the previous match operation succeeded,
* %FALSE otherwise * %FALSE otherwise

@ -197,7 +197,7 @@ g_open (const gchar *filename,
* *
* A wrapper for the POSIX creat() function. The creat() function is * A wrapper for the POSIX creat() function. The creat() function is
* used to convert a pathname into a file descriptor, creating a file * 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 * implemented by the operating system. On Windows, it's the C library
* that implements creat() and file descriptors. The actual Windows * that implements creat() and file descriptors. The actual Windows
* API for opening files is something different. * API for opening files is something different.