list: fix missing documentation warnings
authorAlexandre Terrasa <alexandre@moz-code.org>
Wed, 19 Nov 2014 02:28:39 +0000 (21:28 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Tue, 25 Nov 2014 21:12:06 +0000 (16:12 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/standard/collection/list.nit

index 49fb693..ae1b675 100644 (file)
@@ -278,6 +278,7 @@ class ListIterator[E]
        super IndexedIterator[E]
        redef fun item do return _node.item
 
+       # Set item `e` at self `index`.
        fun item=(e: E) do _node.item = e
 
        redef fun is_ok do return not _node == null