Fix typos
authorBehdad Esfahbod <behdad@src.gnome.org>
Mon, 20 Aug 2007 23:34:35 +0000 (23:34 +0000)
committerBehdad Esfahbod <behdad@src.gnome.org>
Mon, 20 Aug 2007 23:34:35 +0000 (23:34 +0000)
svn path=/trunk/; revision=5712

ChangeLog
docs/reference/ChangeLog
docs/reference/glib/tmpl/spawn.sgml
glib/gmappedfile.c
glib/gregex.c
glib/gstdio.c

index 13e200e..e6ecd8f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * gobject/gsignal.c: g_type_default_interface_ref() was not
index 7a9ce97..5bc6dad 100644 (file)
@@ -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>
 
        * glib/tmpl/keyfile.sgml: Clearify that only comments can precede
index ccdc5f8..f4d6ef0 100644 (file)
@@ -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.
 @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 
index d3d4de8..1220f41 100644 (file)
@@ -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.
index 0679daa..8d3659c 100644 (file)
@@ -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
index f76e6aa..4b7a611 100644 (file)
@@ -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.