Fixed some minor typos in documentation.

2008-02-06  Murray Cumming  <murrayc@murrayc.com>

* glib/gconvert.c:
* glib/pcre/pcre_internal.h: Fixed some minor typos in documentation.

svn path=/trunk/; revision=6467
This commit is contained in:
Murray Cumming
2008-02-06 16:02:20 +00:00
committed by Murray Cumming
parent 37ac644bd1
commit 0d7b605f06
7 changed files with 19 additions and 6 deletions

View File

@@ -1,3 +1,11 @@
2008-02-06 Murray Cumming,,, <murrayc@murrayc.com>
reviewed by: <delete if not using a buddy>
* gfile.c:
* gunixinputstream.c:
* gunixoutputstream.c:
2008-02-06 Tomas Bzatek <tbzatek@redhat.com>
* tests/Makefile.am:

View File

@@ -4578,7 +4578,7 @@ g_file_mount_enclosing_volume_finish (GFile *location,
* @error: a #GError, or %NULL
*
* Returns the #GAppInfo that is registered as the default
* application to handle the file specified bu @file.
* application to handle the file specified by @file.
*
* If @cancellable is not %NULL, then the operation can be cancelled by
* triggering the cancellable object from another thread. If the operation

View File

@@ -49,7 +49,7 @@
*
* #GUnixInputStream implements #GInputStream for reading from a
* unix file descriptor, including asynchronous operations. The file
* descriptor much be selectable, so it doesn't work with opened files.
* descriptor must be selectable, so it doesn't work with opened files.
**/
G_DEFINE_TYPE (GUnixInputStream, g_unix_input_stream, G_TYPE_INPUT_STREAM);

View File

@@ -47,9 +47,9 @@
* @include: gio/gunixoutputstream.h
* @see_also: #GOutputStream
*
* #GUnixOutputStream implements #GOutputStream for writing to a a
* #GUnixOutputStream implements #GOutputStream for writing to a
* unix file descriptor, including asynchronous operations. The file
* descriptor much be selectable, so it doesn't work with opened files.
* descriptor must be selectable, so it doesn't work with opened files.
**/
G_DEFINE_TYPE (GUnixOutputStream, g_unix_output_stream, G_TYPE_OUTPUT_STREAM);