Clean up docs and example for GAsyncResult (#508074)
authorAlexander Larsson <alexl@redhat.com>
Mon, 14 Jan 2008 14:12:48 +0000 (14:12 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Mon, 14 Jan 2008 14:12:48 +0000 (14:12 +0000)
2008-01-14  Alexander Larsson  <alexl@redhat.com>

        * gasyncresult.c:
Clean up docs and example for GAsyncResult (#508074)

svn path=/trunk/; revision=6303

gio/ChangeLog
gio/gasyncresult.c

index 70b99ca39fb581906c598876e1bcbdb338d2e9bf..ecb52eb2dc9ad235aed6206d6267b7e508d6f95b 100644 (file)
@@ -1,3 +1,8 @@
+2008-01-14  Alexander Larsson  <alexl@redhat.com>
+
+        * gasyncresult.c:
+       Clean up docs and example for GAsyncResult (#508074)
+
 2008-01-11  Murray Cumming  <murrayc@murrayc.com>
 
        * gfile.c: Clarify the sentence about GAsyncReadyCallback, 
index 7238918cfd5bb2c06982c0201f07521acf27f510..be711654ec48d6b016b8f5e5ae3ffef07aa4ace2 100644 (file)
@@ -83,7 +83,6 @@
  *
  *   /<!-- -->* ... *<!-- -->/
  *
- *   g_free (res);
  * }
  *
  * int main (int argc, void *argv[])
  * 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 call. These
- * are run in a separate #GThread has been initialized, but otherwise they
+ * 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.
  **/