Fixed some minor typos in the documentation.

2008-01-18  Murray Cumming  <murrayc@murrayc.com>

* gappinfo.c:
* gcancellable.c:
* gfile.c: Fixed some minor typos in the 
documentation. 

svn path=/trunk/; revision=6331
This commit is contained in:
Murray Cumming 2008-01-18 09:41:09 +00:00 committed by Murray Cumming
parent acf029139d
commit 0108d39d02
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2008-01-18 Murray Cumming <murrayc@murrayc.com>
* gappinfo.c:
* gcancellable.c:
* gfile.c: Fixed some minor typos in the
documentation.
2008-01-18 Murray Cumming <murrayc@murrayc.com> 2008-01-18 Murray Cumming <murrayc@murrayc.com>
* gio/gvolumemonitor.c: * gio/gvolumemonitor.c:

View File

@ -136,7 +136,7 @@ g_app_info_equal (GAppInfo *appinfo1,
* *
* Gets the ID of an application. An id is a string that * Gets the ID of an application. An id is a string that
* identifies the application. The exact format of the id is * identifies the application. The exact format of the id is
* platform dependent. For instance on Unix this is the * platform dependent. For instance, on Unix this is the
* desktop file id from the xdg menu specification. * desktop file id from the xdg menu specification.
* *
* Note that the returned ID may be %NULL, depending on how * Note that the returned ID may be %NULL, depending on how

View File

@ -265,7 +265,7 @@ g_cancellable_reset (GCancellable *cancellable)
* *
* Checks if a cancellable job has been cancelled. * Checks if a cancellable job has been cancelled.
* *
* Returns: %TRUE if @cancellable is is cancelled, * Returns: %TRUE if @cancellable is cancelled,
* FALSE if called with %NULL or if item is not cancelled. * FALSE if called with %NULL or if item is not cancelled.
**/ **/
gboolean gboolean

View File

@ -2229,7 +2229,7 @@ g_file_copy (GFile *source,
* *
* *
* Tries to move the file or directory @source to the location specified by @destination. * Tries to move the file or directory @source to the location specified by @destination.
* If native move operations is supported then this is used, otherwise a copy + delete * If native move operations are supported then this is used, otherwise a copy + delete
* fallback is used. The native implementation may support moving directories (for instance * fallback is used. The native implementation may support moving directories (for instance
* on moves inside the same filesystem), but the fallback code does not. * on moves inside the same filesystem), but the fallback code does not.
* *