Add missing method documentation comment
authorDidier 'Ptitjes <ptitjes@free.fr>
Sun, 19 Jul 2009 13:53:57 +0000 (15:53 +0200)
committerDidier 'Ptitjes <ptitjes@free.fr>
Sun, 19 Jul 2009 13:55:54 +0000 (15:55 +0200)
Signed-off-by: Didier 'Ptitjes <ptitjes@free.fr>
gee/iterable.vala

index ca13109..a966236 100644 (file)
@@ -27,6 +27,11 @@ using GLib;
  * collection.
  */
 public interface Gee.Iterable<G> : GLib.Object {
+       /**
+        * Returns the type of the elements contained in this collection.
+        *
+        * @return the type of the elements contained in this collection
+        */
        public abstract Type get_element_type ();
 
        /**