+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>
* gobject/gsignal.c: g_type_default_interface_ref() was not
+2007-08-20 Behdad Esfahbod <behdad@gnome.org>
+
+ * glib/tmpl/spawn.sgml:
+ Fix typos (#468694).
+
2007-08-15 Mikael Hallendal <micke@imendio.com>
* glib/tmpl/keyfile.sgml: Clearify that only comments can precede
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,
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.
@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_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.
* 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
*
* 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.