Fix a typo

...and some whitespace fixes. Pointed out by Will Thompson in
bug 602417.
This commit is contained in:
Matthias Clasen 2010-01-02 19:35:08 -05:00
parent 0542e6dbf9
commit 74af99b860

View File

@ -53,8 +53,8 @@
* of the operation is not needed, there is no need to call the
* "_finish()" function, GIO will take care of cleaning up the
* result and error information after the #GAsyncReadyCallback
* returns. It is also allowed to take a reference to the #GAsyncResult and
* call "_finish()" later.
* returns. It is also allowed to take a reference to the #GAsyncResult
* and call "_finish()" later.
*
* Example of a typical asynchronous operation flow:
* |[
@ -102,10 +102,11 @@
* always called, even in the case of a cancelled operation. On cancellation
* the result is a %G_IO_ERROR_CANCELLED error.
*
* Some ascynchronous operations are implemented using synchronous calls. These
* are run in a separate thread, if #GThread has been initialized, but otherwise they
* are sent to the Main Event Loop and processed in an idle function. So, if you
* truly need asynchronous operations, make sure to initialize #GThread.
* Some asynchronous operations are implemented using synchronous calls.
* These are run in a separate thread, if #GThread has been initialized, but
* otherwise they are sent to the Main Event Loop and processed in an idle
* function. So, if you truly need asynchronous operations, make sure to
* initialize #GThread.
**/
typedef GAsyncResultIface GAsyncResultInterface;