Doc updates
authorMatthias Clasen <matthiasc@src.gnome.org>
Sun, 30 Dec 2007 05:55:23 +0000 (05:55 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 30 Dec 2007 05:55:23 +0000 (05:55 +0000)
svn path=/trunk/; revision=6215

gio/ChangeLog
gio/gfileinputstream.c
gio/gfileoutputstream.c

index 2a7bc07..c09c929 100644 (file)
@@ -1,5 +1,7 @@
 2007-12-30  Matthias Clasen  <mclasen@redhat.com> 
 
+       * gfileinputstream.c:
+       * gfileoutputstream.c:
        * gloadableicon.h:
        * gunixmounts.c:
        * gmount.h:
index c171858..a4e81ee 100644 (file)
  * @include: gio.h
  * @see_also: #GInputStream, #GDataInputStream, #GSeekable
  *
+ * GFileInputStream provides input streams that take their
+ * content from a file.
+ *
+ * GFileInputStream implements #GSeekable, which allows 
+ * the input stream to jump to arbitrary positions in the file.
  **/
 
 static void       g_file_input_stream_seekable_iface_init    (GSeekableIface       *iface);
index 4f8892c..b3e8979 100644 (file)
  * @include: gio.h
  * @see_also: #GOutputStream, #GDataOutputStream, #GSeekable
  * 
+ * GFileOutputStream provides output streams that write their
+ * content to a file.
  *
+ * GFileOutputStream implements #GSeekable, which allows
+ * the output stream to jump to arbitrary positions in the file.
  **/
 
 static void       g_file_output_stream_seekable_iface_init    (GSeekableIface       *iface);